diff options
author | Anthon van der Neut <anthon@mnt.org> | 2016-12-27 16:28:53 +0100 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2016-12-27 16:28:53 +0100 |
commit | 4ad97351cf6d14bb02359bc19c803f53c1c9be3b (patch) | |
tree | c5f28fdebf2ffbdfc18ae0c597ee81ea2ad1f290 /constructor.py | |
parent | 6e58189dc5befdedf3385ba1b9da1db89915b002 (diff) | |
download | ruamel.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.py | 2 |
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 |