summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdi Roiban <adi.roiban@chevah.com>2014-04-22 17:25:44 +0300
committerAdi Roiban <adi.roiban@chevah.com>2014-04-22 17:25:44 +0300
commit4eea5c3ce0caa121ac6b12ac4107f4650f74679d (patch)
tree5312545cb2176e18dada4830034d673c63ff4320
parent71b7b6776856912d50a0b9a85a8ea2a1dc7eb75c (diff)
downloadpyflakes-4eea5c3ce0caa121ac6b12ac4107f4650f74679d.tar.gz
Fix warnings.
-rw-r--r--pyflakes/scripts/pyflakes.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyflakes/scripts/pyflakes.py b/pyflakes/scripts/pyflakes.py
index f0c96d1..4a18e79 100644
--- a/pyflakes/scripts/pyflakes.py
+++ b/pyflakes/scripts/pyflakes.py
@@ -4,4 +4,5 @@ Implementation of the command-line I{pyflakes} tool.
from __future__ import absolute_import
# For backward compatibility
+__all__ = ['check', 'checkPath', 'checkRecursive', 'iterSourceCode', 'main']
from pyflakes.api import check, checkPath, checkRecursive, iterSourceCode, main