Skip to content

Commit

Permalink
Fix missing type annoation
Browse files Browse the repository at this point in the history
  • Loading branch information
tehrengruber committed Dec 1, 2024
1 parent 3eceefe commit ee73819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gt4py/next/iterator/type_system/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _set_node_type(node: itir.Node, type_: ts.TypeSpec) -> None:
node.type = type_


def copy_type(from_: itir.Node, to: itir.Node, allow_untyped=False) -> None:
def copy_type(from_: itir.Node, to: itir.Node, allow_untyped: bool = False) -> None:
"""
Copy type from one node to another.
Expand Down

0 comments on commit ee73819

Please sign in to comment.