Skip to content

Commit 403a907

Browse files
authored
#26: fix a typo (#27)
1 parent cf28311 commit 403a907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/config/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class BackendBaseSettings(pydantic.BaseSettings):
3232
DB_POSTGRES_PORT: int = decouple.config("POSTGRES_PORT", cast=int) # type: ignore
3333
DB_POSTGRES_SCHEMA: str = decouple.config("POSTGRES_SCHEMA", cast=str) # type: ignore
3434
DB_TIMEOUT: int = decouple.config("DB_TIMEOUT", cast=int) # type: ignore
35-
DB_POSTGRES_USENRAME: str = decouple.config("POSTGRES_USERNAME", cast=str) # type: ignore
35+
DB_POSTGRES_USERNAME: str = decouple.config("POSTGRES_USERNAME", cast=str) # type: ignore
3636

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

0 commit comments

Comments
 (0)