Skip to content

Commit

Permalink
fix hound issues
Browse files Browse the repository at this point in the history
  • Loading branch information
truib committed Apr 28, 2024
1 parent 933e0fa commit 68b6011
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eessi_bot_event_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ def main():
opts = event_handler_parse()

# config is read and checked for settings to raise an exception early when the event_handler starts.
if config.check_required_cfg_settings(REQUIRED_CONFIG) == True:
if config.check_required_cfg_settings(REQUIRED_CONFIG):
print("Configuration check: PASSED")
else:
print("Configuration check: FAILED")
Expand Down
2 changes: 1 addition & 1 deletion eessi_bot_job_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def main():

# config is read and checked for settings to raise an exception early when
# the job_manager runs
if config.check_required_cfg_settings(REQUIRED_CONFIG) == True:
if config.check_required_cfg_settings(REQUIRED_CONFIG):
print("Configuration check: PASSED")
else:
print("Configuration check: FAILED")
Expand Down

0 comments on commit 68b6011

Please sign in to comment.