From b64c7fa305fc3122d524230877e6f098f6e47c04 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 12 Jul 2017 17:54:05 +0300 Subject: [PATCH] Add # noqa to a false-positive for unused-import warning --- tests/support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/support.py b/tests/support.py index 04356d1d..c01a9d81 100644 --- a/tests/support.py +++ b/tests/support.py @@ -34,7 +34,7 @@ def requires_mac_ver(*min_version): return decorator try: - from types import SimpleNamespace + from types import SimpleNamespace # noqa except ImportError: class SimpleNamespace(object): def __init__(self, **kwargs):