blob: ce14628377b9da5bc0e74010175670be0e66011c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/usr/local/bin/python3.8
# -*- coding: utf-8 -*-
import re
import sys
from PySide6.scripts.pyside_tool import qmlimportscanner
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(qmlimportscanner())
|