Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
gramalingam committed Aug 2, 2024
1 parent 33471a0 commit 9db02ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onnxscript/rewriter/_tape.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from __future__ import annotations

from typing import Any, Iterable, Mapping, Optional, Sequence, Tuple
from typing import Any, Iterable, List, Mapping, Optional, Sequence, Tuple

from onnxscript import ir
from onnxscript.ir import _convenience
Expand Down Expand Up @@ -62,7 +62,7 @@ def op_multi_output(


# A type representing the domains/versions used in creating nodes in IR.
UsedOpsets = Sequence[Tuple[str, Optional[int]]]
UsedOpsets = List[Tuple[str, Optional[int]]]


class Builder(Tape):
Expand Down

0 comments on commit 9db02ba

Please sign in to comment.