Skip to content

Commit 3361338

Browse files
committed
ruff quote style
1 parent db88799 commit 3361338

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

babs/cli.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ def babs_check_setup_cli():
301301
'--project_root',
302302
'--project-root',
303303
help=(
304-
"Absolute path to the root of BABS project. "
304+
'Absolute path to the root of BABS project. '
305305
"For example, '/path/to/my_BABS_project/' "
306-
"(default is current working directory)."
306+
'(default is current working directory).'
307307
),
308-
default=os.getcwd()
308+
default=os.getcwd(),
309309
)
310310
parser.add_argument(
311311
'--job_test',
@@ -359,11 +359,11 @@ def babs_submit_cli():
359359
'--project_root',
360360
'--project-root',
361361
help=(
362-
"Absolute path to the root of BABS project. "
362+
'Absolute path to the root of BABS project. '
363363
"For example, '/path/to/my_BABS_project/' "
364-
"(default is current working directory)."
364+
'(default is current working directory).'
365365
),
366-
default=os.getcwd()
366+
default=os.getcwd(),
367367
)
368368

369369
# --count, --job: can only request one of them
@@ -509,11 +509,11 @@ def babs_status_cli():
509509
'--project_root',
510510
'--project-root',
511511
help=(
512-
"Absolute path to the root of BABS project. "
512+
'Absolute path to the root of BABS project. '
513513
"For example, '/path/to/my_BABS_project/' "
514-
"(default is current working directory)."
514+
'(default is current working directory).'
515515
),
516-
default=os.getcwd()
516+
default=os.getcwd(),
517517
)
518518
parser.add_argument(
519519
'--resubmit',
@@ -746,11 +746,11 @@ def babs_merge_cli():
746746
'--project_root',
747747
'--project-root',
748748
help=(
749-
"Absolute path to the root of BABS project. "
749+
'Absolute path to the root of BABS project. '
750750
"For example, '/path/to/my_BABS_project/' "
751-
"(default is current working directory)."
751+
'(default is current working directory).'
752752
),
753-
default=os.getcwd()
753+
default=os.getcwd(),
754754
)
755755
parser.add_argument(
756756
'--chunk-size',
@@ -811,11 +811,11 @@ def babs_unzip_cli():
811811
'--project_root',
812812
'--project-root',
813813
help=(
814-
"Absolute path to the root of BABS project. "
814+
'Absolute path to the root of BABS project. '
815815
"For example, '/path/to/my_BABS_project/' "
816-
"(default is current working directory)."
816+
'(default is current working directory).'
817817
),
818-
default=os.getcwd()
818+
default=os.getcwd(),
819819
)
820820
parser.add_argument(
821821
'--container_config_yaml_file',

0 commit comments

Comments
 (0)