Skip to content

Commit 178cbb7

Browse files
authored
Remove unused variables. (#612)
Signed-off-by: Chris Lalancette <[email protected]>
1 parent d2935d6 commit 178cbb7

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

launch/launch/actions/execute_local.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import os
2121
import platform
2222
import signal
23-
import threading
2423
import traceback
2524
from typing import Any # noqa: F401
2625
from typing import Callable
@@ -75,9 +74,6 @@
7574
from ..utilities.type_utils import normalize_typed_substitution
7675
from ..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

8278
class ExecuteLocal(Action):
8379
"""Action that begins executing a process on the local system and sets up event handlers."""

launch/launch/actions/execute_process.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"""Module for the ExecuteProcess action."""
1616

1717
import shlex
18-
import threading
1918
from typing import Dict
2019
from typing import Iterable
2120
from typing import List
@@ -31,9 +30,6 @@
3130
from ..some_substitutions_type import SomeSubstitutionsType
3231
from ..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')
3935
class ExecuteProcess(ExecuteLocal):

0 commit comments

Comments
 (0)