Created
November 8, 2016 03:47
-
-
Save jscn/8eb050aed40abb9953ce0ac5eb91a873 to your computer and use it in GitHub Desktop.
Demo of pylint wrong-import-position errors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Demo of wrong-import-position | |
""" | |
from __future__ import ( | |
absolute_import, | |
division, | |
print_function, | |
unicode_literals, | |
) | |
from future import standard_library | |
standard_library.install_aliases() | |
from collections import namedtuple | |
Point = namedtuple('Point', ['x', 'y']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment