Skip to content

Commit

Permalink
fix: upgrade dependencies, add required type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
andcarnivorous committed Aug 27, 2023
1 parent 1ac6e82 commit a9e5b8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ gunicorn = "^21.2.0"
{%- endif %}
{%- if cookiecutter.add_users == "True" %}
{%- if cookiecutter.orm == "sqlalchemy" %}
fastapi-users = "^10.2.1"
fastapi-users = "^12.1.2"
httpx-oauth = "^0.10.2"
fastapi-users-db-sqlalchemy = "^4.0.3"
fastapi-users-db-sqlalchemy = "^6.0.1"
{%- endif %}
{%- endif %}
{%- if cookiecutter.pydanticv1 == "True" %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Settings(BaseSettings):

{%- if cookiecutter.add_users == "True" %}
{%- if cookiecutter.orm == "sqlalchemy" %}
users_secret = os.getenv("USERS_SECRET", "")
users_secret: str = os.getenv("USERS_SECRET", "")
{%- endif %}
{%- endif %}
{% if cookiecutter.db_info.name != "none" -%}
Expand Down

0 comments on commit a9e5b8f

Please sign in to comment.