Add multiprocessing.freeze_support() to fix infinite loop in compiled binary

This commit is contained in:
Adolfo Reyna
2026-02-26 22:02:25 -05:00
parent ceed77af14
commit a4e17ce896

View File

@@ -150,4 +150,6 @@ def main():
print(f"\nError: {e}")
if __name__ == "__main__":
import multiprocessing
multiprocessing.freeze_support()
main()