Ignore flake8 error that affects Python 2.7 only
[cached-property.git] / tests / test_async_cached_property.py
index f4f93c754c4886f681e757e38bbedcd82a4d980b..4ba84f31be0ba609a179c52e1f546069b4984527 100644 (file)
@@ -29,7 +29,7 @@ def CheckFactory(cached_property_decorator, threadsafe=False):
             self.cached_total = 0
             self.lock = Lock()
 
-        async def add_control(self):
+        async def add_control(self): # noqa
             self.control_total += 1
             return self.control_total