From 59e46651cd0d1bb5644d8c3607ad4ed7e5c4f08d Mon Sep 17 00:00:00 2001 From: Daniel Feldroy Date: Mon, 21 Sep 2020 10:29:21 -0700 Subject: [PATCH] Ignore line that breaks Flake8 check for Python 2.7 --- tests/test_coroutine_cached_property.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2