Skip to content

Commit

Permalink
Fix: double quote in nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhorcas committed Jul 26, 2024
1 parent f369b0e commit 768b12b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flamapy/core/models/ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _get_pretty_str_node(node: 'Node') -> str:
if node.is_binary_op():
res = f'({res})'
else:
res = safename(str(node))
res = str(node)
return res

def pretty_str(self) -> str:
Expand Down

0 comments on commit 768b12b

Please sign in to comment.