summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpycodestyle.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index a5141f2..b5f6ef1 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -55,7 +55,6 @@ import re
import sys
import time
import tokenize
-import warnings
from fnmatch import fnmatch
from optparse import OptionParser
@@ -1203,10 +1202,8 @@ def ambiguous_identifier(logical_line, tokens):
yield start, "E743 ambiguous function definition '%s'" % text
if ident:
yield pos, "E741 ambiguous variable name '%s'" % ident
- prev_type = token_type
prev_text = text
prev_start = start
- prev_end = end
def python_3000_has_key(logical_line, noqa):