Skip to content

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
Signed-off-by: 1597463007 <squid-shape-fifty@duck.com>
  • Loading branch information
1597463007 committed Sep 11, 2024
1 parent d053f08 commit c4ff31f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pargraph/engine/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
try:
from pargraph.utility.graphlib_graphblas import TopologicalSorter
except ImportError:
from graphlib import TopologicalSorter # type: ignore[assignment]
from graphlib import TopologicalSorter # type: ignore[assignment,no-redef]


class Backend(metaclass=abc.ABCMeta):
Expand Down

0 comments on commit c4ff31f

Please sign in to comment.