You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import os
|
|
|
|
files = [file for file in os.listdir() if os.path.splitext(file)[1] == '.ui']
|
|
for file in files:
|
|
os.system('pyside6-uic {} > {}'.format(file,os.path.splitext(file)[0] + '.py')) |