Skip to content

Commit

Permalink
fix CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
bdngo committed Dec 1, 2023
1 parent 9896bd2 commit 8dce117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hammer/config/config_src.py
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ def check_setting(self, key: str, cfg: Optional[dict] = None) -> bool:

if cfg is None:
cfg = self.get_config()
if key not in self.get_config_types():
if key not in self.get_config_types:
#TODO: compile this at the beginning instead of emitting every instance
#self.logger.warning(f"Key {key} is not associated with a type")
return True
Expand Down

0 comments on commit 8dce117

Please sign in to comment.