Skip to content

Commit

Permalink
Merge pull request wtsi-npg#370 from kjsanger/chore/punctuation
Browse files Browse the repository at this point in the history
Fix punctuation
  • Loading branch information
kjsanger authored Sep 24, 2024
2 parents d539848 + 49b3b01 commit 60da9e8
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 deletions.
4 changes: 3 additions & 1 deletion src/npg_irods/cli/apply_ont_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@
"collections are in the local zone.",
type=str,
)
parser.add_argument("--version", help="Print the version and exit", action="store_true")
parser.add_argument(
"--version", help="Print the version and exit.", action="store_true"
)

args = parser.parse_args()
configure_logging(
Expand Down
4 changes: 3 additions & 1 deletion src/npg_irods/cli/check_checksums.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@
type=int,
default=4,
)
parser.add_argument("--version", help="Print the version and exit", action="store_true")
parser.add_argument(
"--version", help="Print the version and exit.", action="store_true"
)

args = parser.parse_args()
configure_logging(
Expand Down
4 changes: 3 additions & 1 deletion src/npg_irods/cli/check_common_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@
type=int,
default=4,
)
parser.add_argument("--version", help="Print the version and exit", action="store_true")
parser.add_argument(
"--version", help="Print the version and exit.", action="store_true"
)

args = parser.parse_args()
configure_logging(
Expand Down
4 changes: 3 additions & 1 deletion src/npg_irods/cli/check_consent_withdrawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@
help="Print to output those paths that fail the check.",
action="store_true",
)
parser.add_argument("--version", help="Print the version and exit", action="store_true")
parser.add_argument(
"--version", help="Print the version and exit.", action="store_true"
)


args = parser.parse_args()
Expand Down
4 changes: 3 additions & 1 deletion src/npg_irods/cli/check_replicas.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@
type=int,
default=4,
)
parser.add_argument("--version", help="Print the version and exit", action="store_true")
parser.add_argument(
"--version", help="Print the version and exit.", action="store_true"
)

args = parser.parse_args()
configure_logging(
Expand Down
2 changes: 1 addition & 1 deletion src/npg_irods/cli/locate_data_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ def main():
type=str,
)
parser.add_argument(
"--version", help="Print the version and exit", action="store_true"
"--version", help="Print the version and exit.", action="store_true"
)

subparsers = parser.add_subparsers(title="Sub-commands", required=True)
Expand Down
4 changes: 3 additions & 1 deletion src/npg_irods/cli/withdraw_consent.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
help="Print to output those paths that fail the check.",
action="store_true",
)
parser.add_argument("--version", help="Print the version and exit", action="store_true")
parser.add_argument(
"--version", help="Print the version and exit.", action="store_true"
)


args = parser.parse_args()
Expand Down

0 comments on commit 60da9e8

Please sign in to comment.