From a2d71f19b0cfe7180036835e27a3002f90e81ac7 Mon Sep 17 00:00:00 2001 From: Daniel Feldroy Date: Mon, 21 Sep 2020 10:27:24 -0700 Subject: [PATCH] Ignore flake8 error that affects Python 2.7 only --- tests/test_async_cached_property.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_async_cached_property.py b/tests/test_async_cached_property.py index f4f93c7..4ba84f3 100644 --- a/tests/test_async_cached_property.py +++ b/tests/test_async_cached_property.py @@ -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 -- 2.30.2