summaryrefslogtreecommitdiff
path: root/tests/decorators/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/decorators/tests.py')
-rw-r--r--tests/decorators/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/decorators/tests.py b/tests/decorators/tests.py
index 1f8d623e02..fce64a8834 100644
--- a/tests/decorators/tests.py
+++ b/tests/decorators/tests.py
@@ -134,7 +134,8 @@ def simple_dec(func):
simple_dec_m = method_decorator(simple_dec)
-# For testing method_decorator, two decorators that add an attribute to the function
+# For testing method_decorator, two decorators that add an attribute to the
+# function
def myattr_dec(func):
def wrapper(*args, **kwargs):
return func(*args, **kwargs)