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

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 scipy  # [wrong-import-order]
import astroid