summaryrefslogtreecommitdiff
path: root/pylint/test/regrtest_data/wrong_import_position.py
blob: 9e2d099e00f85827b0e5de94446e210549e8c6ed (plain)
1
2
3
4
5
6
7
8
9
10
11
"""Test that wrong-import-position is properly reset when
other errors are disabled.
"""
# pylint: disable=unused-import, too-few-public-methods


class Something(object):
    """A class before an import."""


import os