Skip to content

Commit

Permalink
Fixed #56.
Browse files Browse the repository at this point in the history
  • Loading branch information
dloscutoff committed Jun 25, 2022
1 parent ba51ee7 commit 1b5082c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def unparseExpr(tree, statementSep):
code = f"{operands[0]} {op} {operands[1]}; {operands[2]}"
elif isinstance(tree, tokens.Name):
code = str(tree)
elif isinstance(tree, (ptypes.Scalar, ptypes.Pattern, ptypes.Nil)):
elif isinstance(tree, ptypes.PipType):
code = repr(tree)
else:
# Shouldn't ever get here
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

VERSION = "1.0.2"
COMMIT_DATE = "2022-03-19"
COMMIT_DATE = "2022-06-25"

0 comments on commit 1b5082c

Please sign in to comment.