From: Daniel Feldroy Date: Mon, 21 Sep 2020 17:29:21 +0000 (-0700) Subject: Ignore line that breaks Flake8 check for Python 2.7 X-Git-Tag: 1.5.2~13 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59e46651cd0d1bb5644d8c3607ad4ed7e5c4f08d;p=cached-property.git Ignore line that breaks Flake8 check for Python 2.7 --- diff --git a/tests/test_coroutine_cached_property.py b/tests/test_coroutine_cached_property.py index 88790a0..3a1ea57 100644 --- a/tests/test_coroutine_cached_property.py +++ b/tests/test_coroutine_cached_property.py @@ -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)