Comment out import of Typing module

This commit is contained in:
PySimpleGUI 2019-09-19 09:59:14 -04:00
parent 7e972b5277
commit 0248d6e968
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/python3 #!/usr/bin/python3
version = __version__ = "4.5.0.15 Unreleased Mac Buttons experimental Justify fix" version = __version__ = "4.5.0.16 Unreleased Mac Buttons experimental Justify fix"
# 888888ba .d88888b oo dP .88888. dP dP dP # 888888ba .d88888b oo dP .88888. dP dP dP
@ -120,7 +120,7 @@ import pickle
import calendar import calendar
import textwrap import textwrap
import inspect import inspect
from typing import List, Any, Union, Tuple, Dict # because this code has to run on 2.7 can't use real type hints. Must do typing only in comments # from typing import List, Any, Union, Tuple, Dict # because this code has to run on 2.7 can't use real type hints. Must do typing only in comments
from random import randint from random import randint
import warnings import warnings