Skip to content

Commit

Permalink
fix: remove unnecessary tuple around logger.info call
Browse files Browse the repository at this point in the history
  • Loading branch information
infinitewarp committed Apr 30, 2024
1 parent b1271d7 commit 72e210c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions quipucords/scanner/network/inspect_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,8 @@ def cancel_callback(self):
return False
for stop_type, stop_value in STOP_STATES.items():
if self.interrupt.value == stop_value:
(
logger.info(
log_messages.NETWORK_CALLBACK_ACK_STOP, "INSPECT", stop_type
),
logger.info(
log_messages.NETWORK_CALLBACK_ACK_STOP, "INSPECT", stop_type
)
self.stopped = True
return True
Expand Down

0 comments on commit 72e210c

Please sign in to comment.