Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TabulateJarl8 committed Jul 2, 2021
1 parent fa73c1f commit 84c4275
Show file tree
Hide file tree
Showing 2 changed files with 6 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.7.0"
__version__ = "0.7.1"
__author__ = "Tabulate"
__author_email__ = "[email protected]"
__license__ = "GPLv3"
Expand Down
6 changes: 5 additions & 1 deletion ti842py/parsing_utils.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import token_utils
import re
import itertools
import tokenize
import io

try:
from . import token_utils
except ImportError:
import token_utils


def closeOpen(string):
if string.count("\"") % 2 != 0:
Expand Down

0 comments on commit 84c4275

Please sign in to comment.