| Index: third_party/typ/typ/__main__.py
|
| diff --git a/third_party/typ/typ/__main__.py b/third_party/typ/typ/__main__.py
|
| index 3b8b54134333843560ef90d8211a29a4ceccd676..375e3e2a1aaa93c4dfc21c30c6a7fd08fcfa1be5 100644
|
| --- a/third_party/typ/typ/__main__.py
|
| +++ b/third_party/typ/typ/__main__.py
|
| @@ -14,11 +14,8 @@
|
|
|
| import sys
|
|
|
| -from typ import main, spawn_main
|
| +from typ import main
|
|
|
|
|
| if __name__ == '__main__':
|
| - if sys.platform == 'win32': # pragma: win32
|
| - sys.exit(spawn_main(sys.argv[1:], sys.stdout, sys.stderr))
|
| - else: # pragma: no win32
|
| - sys.exit(main())
|
| + sys.exit(main(win_multiprocessing='spawn'))
|
|
|