Initial commit

This commit is contained in:
root
2026-07-18 16:04:40 +00:00
commit d96a087a16
6143 changed files with 827458 additions and 0 deletions

8
venv/bin/sqlformat Executable file
View File

@@ -0,0 +1,8 @@
#!/root/projects/pds/oee/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from sqlparse.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())