From 0248d6e9687a22518a7f8358c03a95ee7b9f4c45 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Thu, 19 Sep 2019 09:59:14 -0400 Subject: [PATCH] Comment out import of Typing module --- PySimpleGUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index dd54a5c7..4dc4e439 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -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