Skip to content

Commit

Permalink
Fix type in Node init args (#1115) (#1122)
Browse files Browse the repository at this point in the history
Signed-off-by: Russ Webber <russ.webber@greenroomrobotics.com>
(cherry picked from commit 01a96e1)

Co-authored-by: Russ <russ@rw.id.au>
  • Loading branch information
mergify[bot] and russkel committed May 2, 2023
1 parent 36705ef commit 2951464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rclpy/rclpy/node.py
Expand Up @@ -125,7 +125,7 @@ def __init__(
use_global_arguments: bool = True,
enable_rosout: bool = True,
start_parameter_services: bool = True,
parameter_overrides: List[Parameter] = None,
parameter_overrides: Optional[List[Parameter]] = None,
allow_undeclared_parameters: bool = False,
automatically_declare_parameters_from_overrides: bool = False,
enable_logger_service: bool = False
Expand Down

0 comments on commit 2951464

Please sign in to comment.