Skip to content

Commit

Permalink
fix errors found by mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Feb 2, 2024
1 parent 890895f commit 824040b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spinnman/extended/extended_transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,11 +630,11 @@ def get_router_diagnostic_filter(
self.scamp_connection_selector)
response = process.execute(
ReadMemory((x, y, 0), memory_position, 4))
return DiagnosticFilter.read_from_int(self._ONE_WORD.unpack_from(
return DiagnosticFilter.read_from_int(_ONE_WORD.unpack_from(
response.data, response.offset)[0])
# pylint: disable=no-member
except Exception:
logger.info(self.where_is_xy(x, y))
logger.info(self._where_is_xy(x, y))
raise

@property
Expand Down

0 comments on commit 824040b

Please sign in to comment.