Skip to content

Commit 73f4493

Browse files
committed
Merge branch 'windowsCompatibility' into 'main'
Windows compatibility See merge request kennbroorg/trackenn-back!10
2 parents 4318ab9 + ec476be commit 73f4493

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

app.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ def descargar_archivo():
106106

107107
if __name__ == '__main__':
108108

109+
# INFO: For Windows platform
110+
if sys.platform == 'win32':
111+
multiprocessing.freeze_support()
112+
109113
# INFO: Read config and keys
110114
with open(r'./config.yaml') as file:
111115
config = yaml.load(file, Loader=yaml.FullLoader)

0 commit comments

Comments
 (0)