Skip to content

Commit

Permalink
Fix python2.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
belerico committed Apr 7, 2020
1 parent 9448d50 commit 6f43c6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions py_asciimath/transformer/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
from __future__ import (absolute_import, division, print_function,
unicode_literals)
from __future__ import (
absolute_import,
division,
print_function,
unicode_literals,
)

from builtins import dict
from itertools import islice

# # from future import standard_library
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36,py37,38
envlist = py27,py34,py35,py36,py37,py38

[testenv]
deps =
Expand Down

0 comments on commit 6f43c6b

Please sign in to comment.