From facf4079b482304199f44a6f04865d8aa1f1f819 Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Sat, 22 Apr 2017 09:47:24 +0200 Subject: typing no longer needed, fix issue #117 (2.6 support) --- scalarstring.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'scalarstring.py') diff --git a/scalarstring.py b/scalarstring.py index 05e4593..570240b 100644 --- a/scalarstring.py +++ b/scalarstring.py @@ -2,11 +2,9 @@ from __future__ import print_function, absolute_import, division, unicode_literals -import sys - from ruamel.yaml.compat import text_type -if sys.version_info >= (3, 5, 2): +if False: # MYPY from typing import Text, Any, Dict, List # NOQA __all__ = ["ScalarString", "PreservedScalarString", "SingleQuotedScalarString", -- cgit v1.2.1