8 lines
210 B
Python
8 lines
210 B
Python
"""
|
|
Implementation of the command-line I{pyflakes} tool.
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
# For backward compatibility
|
|
from pyflakes.api import check, checkPath, checkRecursive, iterSourceCode, main
|