| 1 | """ |
| 2 | Implementation of the command-line I{pyflakes} tool. |
| 3 | """ |
| 4 | |
| 5 | # For backward compatibility |
| 6 | __all__ = ['check', 'checkPath', 'checkRecursive', 'iterSourceCode', 'main'] |
| 7 | from pyflakes.api import check, checkPath, checkRecursive, iterSourceCode, main |