before send to remote

This commit is contained in:
5408 changed files with 652023 additions and 0 deletions

8
env/bin/sqlformat vendored Executable file
View File

@@ -0,0 +1,8 @@
#!/home/su/Загрузки/django_example/env/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())