Skip to content

Commit

Permalink
#26: fix a typo (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeMM authored Dec 13, 2023
1 parent cf28311 commit 403a907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class BackendBaseSettings(pydantic.BaseSettings):
DB_POSTGRES_PORT: int = decouple.config("POSTGRES_PORT", cast=int) # type: ignore
DB_POSTGRES_SCHEMA: str = decouple.config("POSTGRES_SCHEMA", cast=str) # type: ignore
DB_TIMEOUT: int = decouple.config("DB_TIMEOUT", cast=int) # type: ignore
DB_POSTGRES_USENRAME: str = decouple.config("POSTGRES_USERNAME", cast=str) # type: ignore
DB_POSTGRES_USERNAME: str = decouple.config("POSTGRES_USERNAME", cast=str) # type: ignore

IS_DB_ECHO_LOG: bool = decouple.config("IS_DB_ECHO_LOG", cast=bool) # type: ignore
IS_DB_FORCE_ROLLBACK: bool = decouple.config("IS_DB_FORCE_ROLLBACK", cast=bool) # type: ignore
Expand Down

0 comments on commit 403a907

Please sign in to comment.