Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Mar 17, 2022
1 parent 3d4ae1c commit 987f6f7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pacman/model/graphs/machine/machine_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(self, label, application_graph=None):
# Must be false as there is no App_graph
self._application_level_used = False
self._multicast_partitions = defaultdict(
lambda:defaultdict(set))
lambda: defaultdict(set))
self._edge_partitions = OrderedSet()
self._fixed_route_edge_partitions_by_pre_vertex = (
defaultdict(OrderedSet))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.



class MulticastRoutingTableByPartition(object):
""" A set of multicast routing path objects
"""
Expand Down
1 change: 1 addition & 0 deletions pacman/utilities/vertex_sorter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from collections import defaultdict
import sys


class ConstraintOrder(object):
""" A constraint order definition for sorting.
"""
Expand Down

0 comments on commit 987f6f7

Please sign in to comment.