Skip to content

Commit

Permalink
Fix typing.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktBurger committed Feb 26, 2024
1 parent 0d703c8 commit 3b94585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyleco/json_utils/rpc_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
try:
from openrpc import RPCServer # type: ignore # noqa: F401
except ModuleNotFoundError:
from .rpc_server_definition import RPCServer # noqa: F401
from .rpc_server_definition import RPCServer # type: ignore # noqa: F401
2 changes: 1 addition & 1 deletion tests/json_utils/test_rpc_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
except ModuleNotFoundError:
rpc_server_classes = [RPCServer]
else:
rpc_server_classes = [RPCServer, RPCServerOpen]
rpc_server_classes: list = [RPCServer, RPCServerOpen]


@pytest.fixture
Expand Down

0 comments on commit 3b94585

Please sign in to comment.