Skip to content

Commit

Permalink
yet another import fix
Browse files Browse the repository at this point in the history
Signed-off-by: Masaki Kozuki <mkozuki@nvidia.com>
  • Loading branch information
crcrpar committed Nov 11, 2024
1 parent eaf742d commit b6a9281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thunder/core/codeutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def prettyprint(
return m(f"{baseutils.print_type(x, with_quotes=False)}")

# Handles objects that this doesn't know how to serialize as a string
return m(f"(object of type {print_type(type(x), with_quotes=False)})")
return m(f"(object of type {baseutils.print_type(type(x), with_quotes=False)})")


# Use dis.Positions in 3.11+ and make it up in <3.11
Expand Down

0 comments on commit b6a9281

Please sign in to comment.