Merge pull request #1991 from PySimpleGUI/Dev-latest

Comment out import of Typing module
This commit is contained in:
PySimpleGUI 2019-09-19 09:59:35 -04:00 committed by GitHub
commit 79ab02742f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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