Skip to content

Commit

Permalink
chore: add spaces in fluster.py help
Browse files Browse the repository at this point in the history
  • Loading branch information
mdimopoulos committed Jan 27, 2025
1 parent 3f20ed8 commit c0e47fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fluster/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def _add_run_cmd(self, subparsers: Any) -> None:
subparser.add_argument(
"-j",
"--jobs",
help="number of parallel jobs to use. 1x logical cores by default.0 means all logical cores",
help="number of parallel jobs to use. 1x logical cores by default.' '0 means all logical cores",
type=int,
default=multiprocessing.cpu_count(),
)
Expand Down Expand Up @@ -288,7 +288,7 @@ def _add_reference_cmd(self, subparsers: Any) -> None:
subparser.add_argument(
"-j",
"--jobs",
help="number of parallel jobs to use. 1x logical cores by default.0 means all logical cores",
help="number of parallel jobs to use. 1x logical cores by default.' '0 means all logical cores",
type=int,
default=multiprocessing.cpu_count(),
)
Expand Down Expand Up @@ -324,7 +324,7 @@ def _add_download_cmd(self, subparsers: Any) -> None:
subparser.add_argument(
"-j",
"--jobs",
help="number of parallel jobs to use. 2x logical cores by default.0 means all logical cores",
help="number of parallel jobs to use. 2x logical cores by default.' '0 means all logical cores",
type=int,
default=2 * multiprocessing.cpu_count(),
)
Expand Down

0 comments on commit c0e47fe

Please sign in to comment.