summaryrefslogtreecommitdiff
path: root/tests/functional/u/unused_import_everything_disabled.py
blob: 7d6cce74c00984f5fe880f4f1b102fd267418cb6 (plain)
1
2
3
4
5
6
7
8
"""Test that unused-import is not emitted here when everything else is disabled

https://github.com/PyCQA/pylint/issues/3445
"""
from os import environ

for k, v in environ.items():
    print(k, v)