@@ -168,18 +168,19 @@ async def list_subscription_results_cmd(ctx,
168168@click .option ('--source' ,
169169 required = True ,
170170 type = types .JSON (),
171- help = 'Source JSON. Can be a string, filename or - for stdin.' )
171+ help = 'Source JSON. Can be a string, filename, or - for stdin.' )
172172@click .option ('--delivery' ,
173173 required = True ,
174174 type = types .JSON (),
175- help = 'Delivery JSON. Can be a string, filename or - for stdin.' )
175+ help = 'Delivery JSON. Can be a string, filename, or - for stdin.' )
176176@click .option (
177177 '--notifications' ,
178178 type = types .JSON (),
179- help = 'Notifications JSON. Can be a string, filename or - for stdin.' )
179+ help = 'Notifications JSON. Can be a string, filename, or - for stdin.' )
180180@click .option ('--tools' ,
181181 type = types .JSON (),
182- help = 'Toolchain JSON. Can be a string, filename or - for stdin.' )
182+ help = 'Toolchain JSON. Can be a string, filename, or - for stdin.'
183+ )
183184@pretty
184185def request (name , source , delivery , notifications , tools , pretty ):
185186 """Generate a subscriptions request."""
@@ -205,7 +206,7 @@ def request(name, source, delivery, notifications, tools, pretty):
205206 required = True ,
206207 type = types .JSON (),
207208 help = """Geometry of the area of interest of the subscription that will be
208- used to determine matches. Can be a string, filename or - for stdin.""" )
209+ used to determine matches. Can be a string, filename, or - for stdin.""" )
209210@click .option ('--start-time' ,
210211 required = True ,
211212 type = types .DateTime (),
@@ -218,7 +219,8 @@ def request(name, source, delivery, notifications, tools, pretty):
218219 help = 'iCalendar recurrance rule to specify recurrances.' )
219220@click .option ('--filter' ,
220221 type = types .JSON (),
221- help = 'Search filter. Can be a string, filename or - for stdin.' )
222+ help = 'Search filter. Can be a string, filename, or - for stdin.'
223+ )
222224@pretty
223225def request_catalog (item_types ,
224226 asset_types ,
0 commit comments