summaryrefslogtreecommitdiff
path: root/pyflakes/scripts/pyflakes.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-01-25 09:36:05 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-01-25 09:36:05 +0100
commitd532a925d316aafb934fa537e18cc279b77cee9b (patch)
tree676f2e2fba0a438be70de6c49116bcd4c9fee5e0 /pyflakes/scripts/pyflakes.py
parent26a12ed3871561704c02c3a7f664dec546016ce4 (diff)
downloadpyflakes-d532a925d316aafb934fa537e18cc279b77cee9b.tar.gz
Remove some extra blank lines, part of Twisted coding standard.
Diffstat (limited to 'pyflakes/scripts/pyflakes.py')
-rw-r--r--pyflakes/scripts/pyflakes.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pyflakes/scripts/pyflakes.py b/pyflakes/scripts/pyflakes.py
index f981766..be8c700 100644
--- a/pyflakes/scripts/pyflakes.py
+++ b/pyflakes/scripts/pyflakes.py
@@ -77,7 +77,6 @@ def checkPath(filename, reporter=None):
return 1
-
def iterSourceCode(paths):
"""
Iterate over all Python source files in C{paths}.
@@ -96,7 +95,6 @@ def iterSourceCode(paths):
yield path
-
def checkRecursive(paths, reporter):
"""
Recursively check all source files in C{paths}.
@@ -113,7 +111,6 @@ def checkRecursive(paths, reporter):
return warnings
-
def main():
args = sys.argv[1:]
reporter = modReporter._makeDefaultReporter()