summaryrefslogtreecommitdiff
path: root/pylint/test/functional/wrong_import_order.py
blob: 3e4f6a0e2099b1fb270567bde057a7bf55dc048f (plain)
1
2
3
4
5
6
7
8
9
10
"""Checks import order rule"""
# pylint: disable=unused-import,relative-import,ungrouped-imports,import-error

import six
import os.path  # [wrong-import-order]
from astroid import are_exclusive
import sys  # [wrong-import-order]
import datetime  # [wrong-import-order]
import unused_import
import astroid