[pyflakes] add backwards compatibility module (#11910)

This commit is contained in:
Kanishk Pachauri
2024-05-14 11:20:51 +05:30
committed by GitHub
parent 3195f9fb1b
commit b859441e74
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
__all__ = ["check", "checkPath", "checkRecursive", "iterSourceCode", "main"]
from pyflakes.api import (
check as check,
checkPath as checkPath,
checkRecursive as checkRecursive,
iterSourceCode as iterSourceCode,
main as main,
)