Skip to content

Commit 47d9695

Browse files
committed
make the super init arg explicit kw
Signed-off-by: Emerson Knapp <[email protected]>
1 parent aca27dd commit 47d9695

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

launch/launch/substitutions/launch_log_dir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class LaunchLogDir(PathSubstitution):
3535

3636
def __init__(self) -> None:
3737
"""Create a LaunchLogDir substitution."""
38-
super().__init__(self)
38+
super().__init__(path=self)
3939

4040
@classmethod
4141
def parse(cls, data: Sequence[SomeSubstitutionsType]

launch/launch/substitutions/this_launch_file_dir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class ThisLaunchFileDir(PathSubstitution):
3535

3636
def __init__(self) -> None:
3737
"""Create a ThisLaunchFileDir substitution."""
38-
super().__init__(self)
38+
super().__init__(path=self)
3939

4040
@classmethod
4141
def parse(cls, data: Sequence[SomeSubstitutionsType]

0 commit comments

Comments
 (0)