Skip to content

Commit

Permalink
Sort imports correctly
Browse files Browse the repository at this point in the history
Ooops, we forgot to use `isort` after a couple edits. Fix it now via
`isort --recursive`.
  • Loading branch information
marcinsulikowski committed Jun 15, 2020
1 parent b5ddf37 commit 06c3e27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cut_optimizer/algorithms/euler_path.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Euler path finding."""

from typing import List, Tuple
import random
from typing import List, Tuple

from cut_optimizer.graph import Edge, Graph, Vertex

Expand Down
1 change: 1 addition & 0 deletions cut_optimizer/graph.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Generic representation of a graph."""

from typing import Dict, Iterable, Set

from multiset import Multiset


Expand Down

0 comments on commit 06c3e27

Please sign in to comment.