File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 2020import os
2121import platform
2222import signal
23- import threading
2423import traceback
2524from typing import Any # noqa: F401
2625from typing import Callable
7574from ..utilities .type_utils import normalize_typed_substitution
7675from ..utilities .type_utils import perform_typed_substitution
7776
78- _global_process_counter_lock = threading .Lock ()
79- _global_process_counter = 0 # in Python3, this number is unbounded (no rollover)
80-
8177
8278class ExecuteLocal (Action ):
8379 """Action that begins executing a process on the local system and sets up event handlers."""
Original file line number Diff line number Diff line change 1515"""Module for the ExecuteProcess action."""
1616
1717import shlex
18- import threading
1918from typing import Dict
2019from typing import Iterable
2120from typing import List
3130from ..some_substitutions_type import SomeSubstitutionsType
3231from ..substitutions import TextSubstitution
3332
34- _global_process_counter_lock = threading .Lock ()
35- _global_process_counter = 0 # in Python3, this number is unbounded (no rollover)
36-
3733
3834@expose_action ('executable' )
3935class ExecuteProcess (ExecuteLocal ):
You can’t perform that action at this time.
0 commit comments