Skip to content

Commit 151b024

Browse files
Fix function params indentation (#833)
Signed-off-by: Christophe Bedard <[email protected]>
1 parent bdf124d commit 151b024

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

launch/launch/actions/execute_process.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,15 @@ class ExecuteProcess(ExecuteLocal):
124124
"""
125125

126126
def __init__(
127-
self,
128-
*,
129-
cmd: Iterable[SomeSubstitutionsType],
130-
prefix: Optional[SomeSubstitutionsType] = None,
131-
name: Optional[SomeSubstitutionsType] = None,
132-
cwd: Optional[SomeSubstitutionsType] = None,
133-
env: Optional[Dict[SomeSubstitutionsType, SomeSubstitutionsType]] = None,
134-
additional_env: Optional[Dict[SomeSubstitutionsType, SomeSubstitutionsType]] = None,
135-
**kwargs
127+
self,
128+
*,
129+
cmd: Iterable[SomeSubstitutionsType],
130+
prefix: Optional[SomeSubstitutionsType] = None,
131+
name: Optional[SomeSubstitutionsType] = None,
132+
cwd: Optional[SomeSubstitutionsType] = None,
133+
env: Optional[Dict[SomeSubstitutionsType, SomeSubstitutionsType]] = None,
134+
additional_env: Optional[Dict[SomeSubstitutionsType, SomeSubstitutionsType]] = None,
135+
**kwargs
136136
) -> None:
137137
"""
138138
Construct an ExecuteProcess action.

launch_testing/launch_testing/actions/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def timeout(self):
5757
return self.__timeout
5858

5959
def __on_process_exit(
60-
self, event: Event, context: LaunchContext
61-
) -> Optional[SomeEntitiesType]:
60+
self, event: Event, context: LaunchContext
61+
) -> Optional[SomeEntitiesType]:
6262
"""On shutdown event."""
6363
if self.__timer:
6464
self.__timer.cancel()

0 commit comments

Comments
 (0)