Skip to content

Commit

Permalink
chore(config): no more implicit None
Browse files Browse the repository at this point in the history
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
  • Loading branch information
akhilnarang committed Jul 17, 2023
1 parent 4ee0ecc commit db876eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Settings(BaseSettings):
REDIS_PORT: int = 6379
REDIS_PASSWORD: str

GOOGLE_APPLICATION_CREDENTIALS: str | None
GOOGLE_APPLICATION_CREDENTIALS: str | None = None

TIMEZONE: str
model_config = SettingsConfigDict(env_file=".env")
Expand Down

0 comments on commit db876eb

Please sign in to comment.