Skip to content
Snippets Groups Projects
Commit 487798dd authored by Erwan Rouchet's avatar Erwan Rouchet
Browse files

Fix line too long

Reconfigured my IDE, this should not happen anymore.
parent 56df3cfe
No related branches found
No related tags found
1 merge request!22Add score to transcriptions
......@@ -27,13 +27,14 @@ class Command(BaseCommand):
)
parser.add_argument(
'--mask',
help='A mask to identify images from the index file path. Cannot be used with --regex.'
'Syntax: "something<ID>something" '
'<ID> will be used as the image ID.'
help="""A mask to identify images from the index file path. Cannot be used with --regex.
Syntax: "something<ID>something"
<ID> will be used as the image ID."""
)
parser.add_argument(
'--regex',
help='A regex to use as a mask for more complex cases. Must have only one capturing group. Cannot be used with --mask.'
help="""A regex to use as a mask for more complex cases.
Must have only one capturing group. Cannot be used with --mask."""
)
def handle(self, *args, **options):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment