Skip to content

Commit

Permalink
initialize lists
Browse files Browse the repository at this point in the history
  • Loading branch information
TabulateJarl8 committed May 19, 2021
1 parent e1542e2 commit c005d7e
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.4.8"
__version__ = "0.4.9"
__author__ = "Tabulate"
__author_email__ = "[email protected]"
__license__ = "GPLv3"
Expand Down
2 changes: 1 addition & 1 deletion ti842py/tiParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def convertLine(self, index, line):
def toPython(self):
self.pythonCode = []

self.pythonCode += ["def main():"]
self.pythonCode += ["def main():", "\tl1 = l2 = l3 = l4 = l5 = l6 = [None for _ in range(0, 999)] # init lists"]

self.indentLevel = 1
# indentIncrease increases the indent on the next line
Expand Down

0 comments on commit c005d7e

Please sign in to comment.