Apply formatting

This commit is contained in:
Chocobo1
2024-03-17 15:39:31 +08:00
parent 34d19e5714
commit 47c38e8d91
7 changed files with 61 additions and 43 deletions

View File

@@ -7,9 +7,11 @@ import shutil
import sys
from typing import List
def isNotStub(path: str) -> bool:
return (os.path.getsize(path) >= (10 * 1024))
def main() -> int:
parser = argparse.ArgumentParser(description='Gather valid Qt translations for NSIS packaging.')
parser.add_argument("qt_translations_folder", help="Qt's translations folder")
@@ -27,5 +29,6 @@ def main() -> int:
return 0
if __name__ == '__main__':
sys.exit(main())