Skip to content

Commit

Permalink
Fix typo (#1944)
Browse files Browse the repository at this point in the history
Just fixes a typo found in a recent debugging session.

@phschaad would you mind hitting the merge button?

Co-authored-by: Roman Cattaneo <[email protected]>
  • Loading branch information
romanc and romanc authored Feb 20, 2025
1 parent c377d16 commit e843361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/frontend/python/astutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def unparse(node):
# Support for numerical constants
if isinstance(node, (numbers.Number, numpy.bool_)):
return str(node)
# Suport for string
# Support for string
if isinstance(node, str):
return node

Expand Down

0 comments on commit e843361

Please sign in to comment.