Skip to content

Commit 33d39eb

Browse files
committed
Fixed import issue
1 parent d22d597 commit 33d39eb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

domdf_python_tools/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,3 @@
2929
__license__ = "LGPL"
3030
__version__ = "0.1.16"
3131
__email__ = "[email protected]"
32-
33-
34-
pyversion = int(sys.version[0]) # Python Version

domdf_python_tools/utils.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
#
2626
#
2727

28+
import sys
29+
30+
pyversion = int(sys.version[0]) # Python Version
31+
2832

2933
def as_text(value):
3034
"""

0 commit comments

Comments
 (0)