Skip to content

Commit

Permalink
Ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbuwen committed Apr 11, 2024
1 parent 818c175 commit e25fd17
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion skillbridge/client/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ def _receive_only(self) -> str:
) from None

if not received_length_raw:
breakpoint()
raise RuntimeError("The server unexpectedly died")
received_length = int(received_length_raw)
response = b''.join(self._receive_all(received_length)).decode()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from time import sleep
from warnings import warn

from pytest import fixture, raises, skip, mark
from pytest import fixture, mark, raises, skip

from skillbridge import LazyList, RemoteObject, RemoteTable, SkillCode, Symbol, Var, Workspace

Expand Down

0 comments on commit e25fd17

Please sign in to comment.