Skip to content

Commit

Permalink
fix(qbtools): warning on config
Browse files Browse the repository at this point in the history
  • Loading branch information
buroa committed Oct 2, 2024
1 parent eda48b7 commit 21673a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qbtools/qbtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_config(args, key=None, default=None):
try:
config = yaml.safe_load(stream)
except yaml.YAMLError as e:
logger.error(e)
logger.debug(e) # ignore

if key:
config = config.get(key, default)
Expand Down

0 comments on commit 21673a9

Please sign in to comment.