Apply formatting

This commit is contained in:
Chocobo1 2024-03-17 15:39:31 +08:00
commit 47c38e8d91
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
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())