From: Daniel Feldroy Date: Mon, 21 Sep 2020 17:27:24 +0000 (-0700) Subject: Ignore flake8 error that affects Python 2.7 only X-Git-Tag: 1.5.2~14 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a2d71f19b0cfe7180036835e27a3002f90e81ac7;p=cached-property.git Ignore flake8 error that affects Python 2.7 only --- 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