Skip to content

Commit

Permalink
Fixed bug in config validation 2
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Jan 13, 2025
1 parent 570287e commit c8a2733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbconf/config_parser/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def config_analyzer(config_path: str) -> bool:
f"Config info: `{field_name}` Field is not set in the configuration file. Using default value."
)
try:
config_dict[field_name] = annotation.annotation()
config_dict[field_name] = None
except ValidationError as e:
print(
str(
Expand Down

0 comments on commit c8a2733

Please sign in to comment.