Skip to content

Commit

Permalink
use consistent quotes in help messages (ros2#416)
Browse files Browse the repository at this point in the history
Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
  • Loading branch information
dirk-thomas committed May 20, 2020
1 parent ead6f74 commit 02f2e49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ros2bag/ros2bag/verb/play.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def add_arguments(self, parser, cli_name): # noqa: D102
'bag_file', type=check_path_exists, help='bag file to replay')
parser.add_argument(
'-s', '--storage', default='sqlite3',
help='storage identifier to be used, defaults to "sqlite3"')
help="storage identifier to be used, defaults to 'sqlite3'")
parser.add_argument(
'--read-ahead-queue-size', type=int, default=1000,
help='size of message queue rosbag tries to hold in memory to help deterministic '
Expand Down
4 changes: 2 additions & 2 deletions ros2bag/ros2bag/verb/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def add_arguments(self, parser, cli_name): # noqa: D102
defaults to a timestamped folder in the current directory')
parser.add_argument(
'-s', '--storage', default='sqlite3',
help='storage identifier to be used, defaults to "sqlite3"')
help="storage identifier to be used, defaults to 'sqlite3'")
parser.add_argument(
'-f', '--serialization-format', default='',
help='rmw serialization format in which the messages are saved, defaults to the'
Expand Down Expand Up @@ -68,7 +68,7 @@ def add_arguments(self, parser, cli_name): # noqa: D102
parser.add_argument(
'--compression-mode', type=str, default='none',
choices=['none', 'file', 'message'],
help='Determine whether to compress by file or message. Default is "none".'
help="Determine whether to compress by file or message. Default is 'none'."
)
parser.add_argument(
'--compression-format', type=str, default='', choices=['zstd'],
Expand Down

0 comments on commit 02f2e49

Please sign in to comment.