Fix mypy issues

This commit is contained in:
2021-01-30 10:09:19 +01:00
parent 43c063cef9
commit eff22abf8a
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import math
from collections import defaultdict
from typing import TextIO, Tuple
from networkx import DiGraph, topological_sort
from networkx import DiGraph, topological_sort # type: ignore[import]
def read_pair(item: str) -> Tuple[str, int]: