Skip to content

Commit

Permalink
fix(merge conflict): trying to fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
basarbyz committed Sep 10, 2024
1 parent d88ca39 commit f13b15a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ class Settings(BaseSettings):
FIWARE_SERVICEPATH: str = "/"
# Get log level from environment variable, default to INFO if not set
LOG_LEVEL: str = 'INFO' # 'critical', 'error', 'warning', 'info', 'debug'
model_config = SettingsConfigDict(env_file=".env")
model_config = SettingsConfigDict(
env_file=".env",
extra="allow"
)


# Create an instance of the settings
Expand Down

0 comments on commit f13b15a

Please sign in to comment.