Commit 9598bdce authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

disable parallel processing if windows

parent 3f6d7e17
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@
#

import logging
import platform
import re
from copy import deepcopy
from itertools import repeat
@@ -200,7 +201,7 @@ def filter_itu(
            repeat(block_size),
        ),
        repeat({"logger": logger}),
        "mp",
        "mp" if platform.system() != "Windows" else None,
        show_progress=False,
    )