Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ def _enforce_non_default_secrets(self) -> Self:
return self


settings = Settings() # type: ignore
settings = Settings() # type: ignore # ty: ignore[unused-ignore-comment]
3 changes: 2 additions & 1 deletion backend/app/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def render_email_template(*, template_name: str, context: dict[str, Any]) -> str
template_str = (
Path(__file__).parent / "email-templates" / template_name
).read_text()
html_content = Template(template_str).render(context)
template: Template = Template(template_str)
html_content = template.render(context)
return html_content


Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies = [
"pydantic>2.0",
"emails>=1.1.2,<2.0",
"jinja2<4.0.0,>=3.1.4",
"alembic<2.0.0,>=1.12.1",
"alembic>=1.19.1,<2.0.0",
"httpx<1.0.0,>=0.25.1",
"psycopg[binary]>=3.3.4,<4.0.0",
"sqlmodel>=0.0.39,<1.0.0",
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[dependency-groups]
dev = [
"prek>=0.4.11,<1.0.0",
"typer>=0.26.1,<1.0.0",
"zizmor>=1.28.0",
"prek>=0.4.14,<1.0.0",
"typer>=0.27.1,<1.0.0",
"zizmor>=1.29.0",
]

github-actions = [
Expand Down
Loading