add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# pyflakes
> 检查 Python 源代码文件中的错误。
> 更多信息:<https://pypi.org/project/pyflakes>。
- 检查单个 Python 文件:
`pyflakes check {{path/to/file.py}}`
- 检查特定目录中的 Python 文件:
`pyflakes checkPath {{path/to/directory}}`
- 递归检查目录中的 Python 文件:
`pyflakes checkRecursive {{path/to/directory}}`
- 检查多个目录中找到的所有 Python 文件:
`pyflakes iterSourceCode {{path/to/directory_1}} {{path/to/directory_2}}`