Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Aug 23, 2019
1 parent b981879 commit 79debeb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion pacman/model/graphs/impl/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ def vertex_by_label(self, label):
if vertex.label == label:
return vertex


@property
@overrides(AbstractGraph.n_vertices)
def n_vertices(self):
Expand Down
8 changes: 4 additions & 4 deletions pacman/model/resources/iptag_resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __eq__(self, other):
For unit tests ONLY so __hash__ and __eq__ pairing not done!
"""
return (self._ip_address == other._ip_address and
self._port == other._port and
self._strip_sdp == other._strip_sdp and
self._tag == other._tag and
self._traffic_identifier == other._traffic_identifier)
self._port == other._port and
self._strip_sdp == other._strip_sdp and
self._tag == other._tag and
self._traffic_identifier == other._traffic_identifier)
1 change: 0 additions & 1 deletion pacman/model/resources/resource_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,3 @@ def __eq__(self, other):
if self._iptags != other._iptags:
return False
return self._reverse_iptags == other._reverse_iptags

0 comments on commit 79debeb

Please sign in to comment.