Ignore line that breaks Flake8 check for Python 2.7
authorDaniel Feldroy <pydanny@users.noreply.github.com>
Mon, 21 Sep 2020 17:29:21 +0000 (10:29 -0700)
committerGitHub <noreply@github.com>
Mon, 21 Sep 2020 17:29:21 +0000 (10:29 -0700)
tests/test_coroutine_cached_property.py

index 88790a0c814e2692c5b494e8454d7e723fe0d654..3a1ea57dca1b372e9ced1daea68eae2efa4922c4 100644 (file)
@@ -57,7 +57,7 @@ class TestCachedProperty(unittest.TestCase):
         """
         Assert that both `add_control` and 'control_total` equal `expected`
         """
-        value = yield from check.add_control()
+        value = yield from check.add_control()  # noqa
         self.assertEqual(value, expected)
         self.assertEqual(check.control_total, expected)