summaryrefslogtreecommitdiff
path: root/cherrypy/test/webtest.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-03-12 00:47:17 +0200
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-03-12 00:47:17 +0200
commit163920559de29cecc7609fafc079cbc08e4e727e (patch)
tree1861737b9b6ea8051d678546dae471392789f094 /cherrypy/test/webtest.py
parent9280490ab2a29d447e093004cb001b179d424796 (diff)
downloadcherrypy-git-163920559de29cecc7609fafc079cbc08e4e727e.tar.gz
PEP8fy codebase: eliminated E121 and E131 flake8 errors
Diffstat (limited to 'cherrypy/test/webtest.py')
-rw-r--r--cherrypy/test/webtest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cherrypy/test/webtest.py b/cherrypy/test/webtest.py
index c0e9936d..1fc5c83b 100644
--- a/cherrypy/test/webtest.py
+++ b/cherrypy/test/webtest.py
@@ -128,10 +128,10 @@ class ReloadingTestLoader(unittest.TestLoader):
return self.loadTestsFromModule(obj)
elif (
(
- (six.PY3 and isinstance(obj, type)) or
- isinstance(obj, (type, types.ClassType))
+ (six.PY3 and isinstance(obj, type)) or
+ isinstance(obj, (type, types.ClassType))
) and
- issubclass(obj, unittest.TestCase)):
+ issubclass(obj, unittest.TestCase)):
return self.loadTestsFromTestCase(obj)
elif isinstance(obj, types.UnboundMethodType):
if six.PY3: