Skip to content

Commit

Permalink
suppress default impl warning until fixed (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdngo authored Dec 15, 2022
1 parent 0e1b156 commit 8d2dc90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hammer_config/config_src.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,8 @@ def get_setting(self, key: str, nullvalue: Any = None, check_type: bool = True)
if key not in self.get_config():
raise KeyError("Key " + key + " is missing")
if key not in IGNORE and key not in defaults:
warn(f"Key {key} does not have a default implementation")
# warn(f"Key {key} does not have a default implementation")
pass
if check_type and key not in IGNORE:
if key not in self.get_config_types():
warn(f"Key {key} is not associated with a type")
Expand Down

0 comments on commit 8d2dc90

Please sign in to comment.