Skip to content

Commit

Permalink
Allow .env to contain stuff that's not PudlPaths() related.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdangerx committed Nov 28, 2023
1 parent fa74991 commit 45d9356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pudl/workspace/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PudlPaths(BaseSettings):

pudl_input: PotentialDirectoryPath
pudl_output: PotentialDirectoryPath
model_config = SettingsConfigDict(env_file=".env")
model_config = SettingsConfigDict(env_file=".env", extra="ignore")

@property
def input_dir(self) -> Path:
Expand Down

0 comments on commit 45d9356

Please sign in to comment.