summaryrefslogtreecommitdiff
path: root/tests/decorators
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-02-09 06:13:10 -0500
committerTim Graham <timograham@gmail.com>2014-02-09 06:13:10 -0500
commit4f8e8a6ec2e449e7a6c2e89f011c744ec6874c82 (patch)
tree4759a91aa39d95930087758da7b5c1b00bf7c1d9 /tests/decorators
parenta7e2957110e8cac6ad5bf233ce4cc1fa528ac0e0 (diff)
Removed unused imports + other flake8 fixes.
Diffstat (limited to 'tests/decorators')
-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 bd4fa4756c..e72e6cfee3 100644
--- a/tests/decorators/tests.py
+++ b/tests/decorators/tests.py
@@ -174,6 +174,7 @@ def myattr2_dec(func):
myattr2_dec_m = method_decorator(myattr2_dec)
+
class ClsDec(object):
def __init__(self, myattr):
self.myattr = myattr
@@ -233,7 +234,7 @@ class MethodDecoratorTests(TestCase):
# t = Test()
self.assertEqual(Test().method(), False)
-
+
class XFrameOptionsDecoratorsTests(TestCase):
"""