Skip to content

Commit

Permalink
Merge pull request #1125 from Griperis/fix-f-strings
Browse files Browse the repository at this point in the history
fix(cli): added missing 'f-strings' in argument helps
  • Loading branch information
cornerfarmer authored Jul 8, 2024
2 parents dccd126 + 0f25501 commit 0152cd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blenderproc/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ def cli():
formatter_class=argparse.RawTextHelpFormatter)
parser_download = subparsers.add_parser('download', help="Download datasets, materials or 3D models to run "
"examples or your own pipeline. \n"
"Options: {', '.join(options['download'])}",
f"Options: {', '.join(options['download'])}",
formatter_class=argparse.RawTextHelpFormatter)
parser_extract = subparsers.add_parser('extract', help="Extract the raw images from generated containers such "
"as hdf5. \nOptions: {', '.join(options['extract'])}",
f"as hdf5. \nOptions: {', '.join(options['extract'])}",
formatter_class=argparse.RawTextHelpFormatter)
parser_pip = subparsers.add_parser('pip', help="Can be used to install/uninstall pip packages in the Blender "
"python environment. \nOptions: {', '.join(options['pip'])}",
f"python environment. \nOptions: {', '.join(options['pip'])}",
formatter_class=argparse.RawTextHelpFormatter)

sub_parser_vis = parser_vis.add_subparsers(dest='vis_mode')
Expand Down

0 comments on commit 0152cd9

Please sign in to comment.