2 Star 36 Fork 8

Time-Coder/Glass-Engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
static_check.py 352 Bytes
一键复制 编辑 原始数据 按行查看 历史
import os
import subprocess
import sys
def check_syntax(folder_name):
subprocess.call([sys.executable, "-m", "pyflakes", folder_name])
def check_style(folder_name):
subprocess.call([sys.executable, "-m", "pycodestyle", folder_name])
check_syntax("glass")
check_syntax("glass_engine")
# check_style("glass")
# check_style("glass_engine")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/time-coder/Glass-Engine.git
git@gitee.com:time-coder/Glass-Engine.git
time-coder
Glass-Engine
Glass-Engine
main

搜索帮助