Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
robnagler committed Dec 22, 2024
1 parent fbe9c34 commit 668bea8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion sirepo/job_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ def _agent_receive_alive(self, msg):
if self._websocket:
if self._websocket != msg.handler:
self._websocket = None
raise AssertionError(pkdformat("unexpected incoming msg.content={}", msg.content))
raise AssertionError(
pkdformat("unexpected incoming msg.content={}", msg.content)
)
else:
self._websocket = msg.handler
self._websocket_ready.set()
Expand Down
1 change: 0 additions & 1 deletion sirepo/job_driver/sbatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ async def kill(self):
except Exception as e:
pkdlog("{} error={} stack={}", self, e, pkdexc())


@classmethod
def get_instance(cls, op):
u = op.msg.uid
Expand Down

0 comments on commit 668bea8

Please sign in to comment.