Skip to content

Commit

Permalink
fix(dotenv): fix variable name in DotEnvConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jun 30, 2023
1 parent 354c9b4 commit 09de6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyfi/dotenv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class DotEnvConfig(BaseSettings):
"""Environment variables for HyFI"""

config_name: str = "__init__"
_config_name_: str = "__init__"

DOTENV_FILENAME: Optional[str] = ".env"
DOTENV_DIR: Optional[str] = ""
Expand Down

0 comments on commit 09de6f4

Please sign in to comment.