Skip to content

Commit

Permalink
forgot argument
Browse files Browse the repository at this point in the history
  • Loading branch information
TabulateJarl8 committed May 21, 2021
1 parent 0819344 commit 23acb01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ti842py/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = "ti842py"
__description__ = "TI-BASIC to Python 3 Transpiler"
__url__ = "https://github.com/TabulateJarl8/ti842py"
__version__ = "0.5.0"
__version__ = "0.5.1"
__author__ = "Tabulate"
__author_email__ = "[email protected]"
__license__ = "GPLv3"
Expand Down
2 changes: 1 addition & 1 deletion ti842py/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def transpile(infile, outfile="stdout", decompileFile=True, forceDecompile=False
with open(infile, 'r') as f:
file_lines = [line.strip() for line in f.readlines()]

pythonCode = TIBasicParser(file_lines).toPython()
pythonCode = TIBasicParser(file_lines, multiplication).toPython()

# Write to outfile
if outfile == "stdout":
Expand Down

0 comments on commit 23acb01

Please sign in to comment.