Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Nov 1, 2023
1 parent b249875 commit 7cb0a71
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions parsl/executors/high_throughput/interchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,11 +433,10 @@ def process_task_outgoing_incoming(self, interesting_managers, hub_channel, kill
else:
logger.info("Manager {!r} has compatible Parsl version {}".format(manager_id, msg['parsl_v']))
logger.info("Manager {!r} has compatible Python version {}".format(manager_id,
msg['python_v'].rsplit(".", 1)[0]))
msg['python_v'].rsplit(".", 1)[0]))
else:
# Registration has failed.
logger.debug("Suppressing bad registration from manager: {!r}".format(
manager_id))
logger.debug("Suppressing bad registration from manager: {!r}".format(manager_id))

else:
tasks_requested = int.from_bytes(message[1], "little")
Expand Down

0 comments on commit 7cb0a71

Please sign in to comment.