Merge pull request #1991 from PySimpleGUI/Dev-latest
Comment out import of Typing module
This commit is contained in:
commit
79ab02742f
|
@ -1,5 +1,5 @@
|
|||
#!/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
|
||||
|
@ -120,7 +120,7 @@ import pickle
|
|||
import calendar
|
||||
import textwrap
|
||||
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
|
||||
import warnings
|
||||
|
||||
|
|
Loading…
Reference in New Issue