diff options
author | Anthon van der Neut <anthon@mnt.org> | 2017-04-22 09:47:24 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2017-04-22 09:47:24 +0200 |
commit | facf4079b482304199f44a6f04865d8aa1f1f819 (patch) | |
tree | 32b2402d96d935998d1163ccee64c8fc8c8a70fa /scalarint.py | |
parent | 4f8475e4592ed1430815b1c2d4e40c95a536d156 (diff) | |
download | ruamel.yaml-facf4079b482304199f44a6f04865d8aa1f1f819.tar.gz |
typing no longer needed, fix issue #117 (2.6 support)0.14.9
Diffstat (limited to 'scalarint.py')
-rw-r--r-- | scalarint.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scalarint.py b/scalarint.py index 11c8e2e..9f17b0c 100644 --- a/scalarint.py +++ b/scalarint.py @@ -2,9 +2,7 @@ from __future__ import print_function, absolute_import, division, unicode_literals -import sys - -if sys.version_info >= (3, 5, 2): +if False: # MYPY from typing import Text, Any, Dict, List # NOQA __all__ = ["ScalarInt", "BinaryInt", "OctalInt", "HexInt", "HexCapsInt"] |