summaryrefslogtreecommitdiff
path: root/constructor.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2016-12-27 16:28:53 +0100
committerAnthon van der Neut <anthon@mnt.org>2016-12-27 16:28:53 +0100
commit4ad97351cf6d14bb02359bc19c803f53c1c9be3b (patch)
treec5f28fdebf2ffbdfc18ae0c597ee81ea2ad1f290 /constructor.py
parent6e58189dc5befdedf3385ba1b9da1db89915b002 (diff)
downloadruamel.yaml-4ad97351cf6d14bb02359bc19c803f53c1c9be3b.tar.gz
fix for #85: mypy complaining about unicode (reported by Peter Amstutz)0.13.7
removed import of unicode_literals
Diffstat (limited to 'constructor.py')
-rw-r--r--constructor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/constructor.py b/constructor.py
index 682e95a..4d3962d 100644
--- a/constructor.py
+++ b/constructor.py
@@ -1,6 +1,6 @@
# coding: utf-8
-from __future__ import print_function, absolute_import, division, unicode_literals
+from __future__ import print_function, absolute_import, division
import collections
import datetime