mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-15 01:30:40 +00:00
9 lines
287 B
Python
9 lines
287 B
Python
|
"""
|
||
|
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
|