Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
import sys
import time
import tokenize
import warnings

from fnmatch import fnmatch
from optparse import OptionParser
Expand Down Expand Up @@ -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):
Expand Down