Skip to content

Commit

Permalink
Fixed typing of Edges
Browse files Browse the repository at this point in the history
  • Loading branch information
matjobst committed Jul 4, 2023
1 parent 6beab6a commit e76e51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nir/ir.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import numpy as np


Edges = typing.NewType("Edges", list[typing.Tuple[int, int]])
Edges = typing.NewType("Edges", typing.List[typing.Tuple[int, int]])


@dataclass
Expand Down

0 comments on commit e76e51a

Please sign in to comment.