Skip to content

Commit

Permalink
fix python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed Aug 22, 2018
1 parent 4fac37a commit c45a877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion launch/launch/actions/include_launch_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(
*,
launch_arguments: Optional[
Iterable[Tuple[SomeSubstitutionsType, SomeSubstitutionsType]]
] = None,
] = None
) -> None:
"""Constructor."""
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion launch/launch/substitutions/launch_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(
self,
variable_name: SomeSubstitutionsType,
*,
default: Optional[Union[Any, Iterable[Any]]] = None,
default: Optional[Union[Any, Iterable[Any]]] = None
) -> None:
"""Constructor."""
super().__init__()
Expand Down

0 comments on commit c45a877

Please sign in to comment.