Skip to content

Commit

Permalink
typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilio Castillo committed Jul 12, 2023
1 parent 395287e commit f687c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytorch_pfn_extras/_dynamo/_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _dummy_bwd_backend(
) -> Any:
# The bwd pass is dummy, so we just return the inputs as they are
def run_graph(*args, **kwargs): # type: ignore[no-untyped-def]
return gm(*args, **kwargs)
return gm(*args, **kwargs) # type: ignore[operator]

return make_boxed_func(run_graph)

Expand Down

0 comments on commit f687c72

Please sign in to comment.