Skip to content

Commit

Permalink
# pylint: disable=protected-access
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Mar 28, 2024
1 parent 6d4a59e commit 293c1b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spinn_machine/multicast_routing_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def merge(self, other: MulticastRoutingEntry) -> MulticastRoutingEntry:
"other.mask", hex(other.mask),
f"The mask does not match 0x{self.mask:x}")

# pylint disable:protected-access
# pylint: disable=protected-access
routing_entry = self._routing_entry.merge(other._routing_entry)
return MulticastRoutingEntry(
self.key, self.mask, routing_entry)
Expand Down

0 comments on commit 293c1b4

Please sign in to comment.