diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-09-28 15:06:04 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-09-28 15:06:04 +0100 |
commit | ebe0c7f30fd5442d05e44c87b8313632aaccbf1e (patch) | |
tree | 8395888570d3ead93456f2e41cf890a6d36508da /cli.py | |
parent | 65ef7cc822a3d417be488288b0ae9442b9bb141a (diff) |
multiprocessing fix
Diffstat (limited to 'cli.py')
-rw-r--r-- | cli.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,8 @@ +import multiprocessing import sys from datamaps.main import cli if __name__ == '__main__': + multiprocessing.freeze_support() cli(sys.argv[1:])
\ No newline at end of file |