summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpycodestyle.py1
-rw-r--r--testsuite/E72.py4
2 files changed, 1 insertions, 4 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index c1ec98d..c71071e 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -1465,7 +1465,6 @@ def comparison_type(logical_line, noqa):
common base class, basestring, so you can do:
Okay: if isinstance(obj, basestring):
- Okay: if type(a1) is type(b1):
"""
match = COMPARE_TYPE_REGEX.search(logical_line)
if match and not noqa:
diff --git a/testsuite/E72.py b/testsuite/E72.py
index e789d82..bba55f5 100644
--- a/testsuite/E72.py
+++ b/testsuite/E72.py
@@ -4,7 +4,7 @@ if type(res) == type(42):
#: E721
if type(res) != type(""):
pass
-#: E721
+#: Okay
import types
if res == types.IntType:
@@ -47,8 +47,6 @@ if isinstance(res, str):
pass
if isinstance(res, types.MethodType):
pass
-if type(a) != type(b) or type(a) == type(ccc):
- pass
#: Okay
def func_histype(a, b, c):
pass