Skip to content

Instantly share code, notes, and snippets.

@jscn
Created November 8, 2016 03:47
Show Gist options
  • Save jscn/8eb050aed40abb9953ce0ac5eb91a873 to your computer and use it in GitHub Desktop.
Save jscn/8eb050aed40abb9953ce0ac5eb91a873 to your computer and use it in GitHub Desktop.
Demo of pylint wrong-import-position errors
"""
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