summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_functional.py
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-22 11:21:07 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-23 13:45:03 +0100
commitc3aa2948c6c14862407501290571f858ccf45b07 (patch)
tree6f0812d7db0fe2f5a6bf9e07f20ba7d442ce8789 /tests/utils_tests/test_functional.py
parent317040a73b77be8f8210801793b2ce6d1a69301e (diff)
Fixed #21298 -- Fixed E301 pep8 warnings
Diffstat (limited to 'tests/utils_tests/test_functional.py')
-rw-r--r--tests/utils_tests/test_functional.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils_tests/test_functional.py b/tests/utils_tests/test_functional.py
index 66e051033e..b6145ff0d0 100644
--- a/tests/utils_tests/test_functional.py
+++ b/tests/utils_tests/test_functional.py
@@ -28,6 +28,7 @@ class FunctionalTestCase(unittest.TestCase):
def _get_do(self):
raise NotImplementedError
+
def _set_do(self, value):
raise NotImplementedError
do = lazy_property(_get_do, _set_do)