| Index: third_party/typ/typ/__main__.py
|
| diff --git a/third_party/typ/typ/__main__.py b/third_party/typ/typ/__main__.py
|
| index 375e3e2a1aaa93c4dfc21c30c6a7fd08fcfa1be5..0e026e86a48c3ebd62803e5696762ff264092844 100644
|
| --- a/third_party/typ/typ/__main__.py
|
| +++ b/third_party/typ/typ/__main__.py
|
| @@ -12,10 +12,10 @@
|
| # See the License for the specific language governing permissions and
|
| # limitations under the License.
|
|
|
| -import sys
|
| +import sys # pragma: no cover
|
|
|
| -from typ import main
|
| +from typ import main # pragma: no cover
|
|
|
|
|
| -if __name__ == '__main__':
|
| - sys.exit(main(win_multiprocessing='spawn'))
|
| +if __name__ == '__main__': # pragma: no cover
|
| + sys.exit(main())
|
|
|