From 59e7c189e183ecbe979f773a2e22318ecd90614f Mon Sep 17 00:00:00 2001 From: Yann Mahe Date: Fri, 29 Apr 2016 11:51:38 -0400 Subject: [PATCH] [flake8][test] noqa wmi imports --- tests/core/test_wmi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/test_wmi.py b/tests/core/test_wmi.py index 717f7fc39e..0a3478b675 100644 --- a/tests/core/test_wmi.py +++ b/tests/core/test_wmi.py @@ -385,7 +385,7 @@ def test_no_wmi_connection_pooling(self): """ WMI connections are not be shared among WMISampler objects. """ - from win32com.client import Dispatch + from win32com.client import Dispatch # noqa wmi_sampler_1 = WMISampler("Win32_PerfRawData_PerfOS_System", ["ProcessorQueueLength"]) wmi_sampler_2 = WMISampler("Win32_OperatingSystem", ["TotalVisibleMemorySize"])