Skip to content

Commit

Permalink
fix(config): update attributes getter
Browse files Browse the repository at this point in the history
  • Loading branch information
pivoshenko committed Apr 26, 2024
1 parent 61509d1 commit efb09af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry_plugin_dotenv/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self) -> None:

source_config.update(config)

for attribute in self.__match_args__:
for attribute in self.__dataclass_fields__:
default_attribute_value: bool | str | None = self.__getattribute__(attribute)
source_attribute_value = source_config.get(attribute)

Expand Down

0 comments on commit efb09af

Please sign in to comment.