Skip to content

Commit

Permalink
scanner: fix pyright failing
Browse files Browse the repository at this point in the history
  • Loading branch information
malmeloo committed Jul 15, 2024
1 parent 88bd519 commit c12fffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion findmy/scanner/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def __eq__(self, other: object) -> bool:

@override
def __hash__(self) -> int:
return int.from_bytes(self._mac_bytes)
return int.from_bytes(self._mac_bytes, "big")


class NearbyOfflineFindingDevice(OfflineFindingDevice):
Expand Down

0 comments on commit c12fffe

Please sign in to comment.