Skip to content

Commit c62bd9c

Browse files
committed
Fix static analysis errors
1 parent 6e0230f commit c62bd9c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.idea/ephys-link.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/back_end/test_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def run_coroutine(coroutine: Awaitable[None]) -> None:
146146
patched_get_event_loop.assert_called_once()
147147
spied_info_print.assert_any_call("PLATFORM", platform_handler.get_display_name())
148148
spied_info_print.assert_any_call("MANIPULATORS", str(DUMMY_STRING_LIST))
149-
spied_info_print.assert_any_call("PINPOINT ID", mocker.ANY) # pyright: ignore[reportAny]
149+
spied_info_print.assert_any_call("PINPOINT ID", mocker.ANY)
150150
patched_connect.assert_awaited_once() # pyright: ignore[reportUnusedCallResult]
151151
patched_wait.assert_awaited_once() # pyright: ignore[reportUnusedCallResult]
152152

@@ -194,7 +194,7 @@ def run_coroutine(coroutine: Awaitable[None]) -> None:
194194
patched_get_event_loop.assert_called_once()
195195
spied_info_print.assert_any_call("PLATFORM", platform_handler.get_display_name())
196196
spied_info_print.assert_any_call("MANIPULATORS", str(DUMMY_STRING_LIST))
197-
spied_info_print.assert_any_call("PINPOINT ID", mocker.ANY) # pyright: ignore[reportAny]
197+
spied_info_print.assert_any_call("PINPOINT ID", mocker.ANY)
198198
assert init_error.value.args[0] == PROXY_CLIENT_NOT_INITIALIZED_ERROR
199199
patched_connect.assert_not_awaited() # pyright: ignore[reportUnusedCallResult]
200200
patched_wait.assert_not_awaited() # pyright: ignore[reportUnusedCallResult]

0 commit comments

Comments
 (0)