Skip to content

Commit 22ae6b9

Browse files
authored
reformat help string
1 parent 88e76c2 commit 22ae6b9

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

planet/cli/subscriptions.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -521,13 +521,15 @@ def request(name,
521521
@click.option(
522522
'--geometry-relation',
523523
type=click.Choice(["intersects", "contains", "within"]),
524-
help=("The relationship between the subscription geometry and "
525-
"the item geometry. Intersects (default): Returns items whose "
526-
"footprint geometry partially or fully overlaps with the "
527-
"subscription geometry. Contains: Returns items where the "
528-
"footprint geometry fully encloses the AOI. Within: Returns "
529-
"items whose entire footprint geometry is fully contained "
530-
"within the AOI."))
524+
help= # noqa: E251
525+
('\b\n'
526+
'The relationship between the subscription geometry and the item geometry.\n'
527+
'intersects (default): Returns items whose footprint geometry partially or \n'
528+
'fully overlaps with the subscription geometry.\n'
529+
'contains: Returns items where the footprint geometry fully encloses the \n'
530+
'subscription geometry.\n'
531+
'within: Returns items whose entire footprint geometry is fully contained \n'
532+
'within the subscription geometry.'))
531533
@pretty
532534
def request_catalog(item_types,
533535
asset_types,

0 commit comments

Comments
 (0)