@@ -30,7 +30,8 @@ def cli(verbose):
30
30
"-f" ,
31
31
"--from-saved" ,
32
32
is_flag = True ,
33
- help = "If --batch and --server both used, serve datasets from saved Zarrs" ,
33
+ help = "If --batch and --server both used, serve datasets from saved Zarrs "
34
+ "rather than computing them on the fly." ,
34
35
)
35
36
36
37
notebook_argument = click .argument (
@@ -127,7 +128,7 @@ def image_cli():
127
128
type = click .Path (path_type = pathlib .Path , writable = True ),
128
129
default = None ,
129
130
help = "Write a CWL file defining an Earth Observation Application Package "
130
- "to the specified path" ,
131
+ "to the specified path. " ,
131
132
)
132
133
@notebook_argument
133
134
def build (
@@ -153,12 +154,13 @@ def build(
153
154
print (f"Built image with tags { image .tags } " )
154
155
155
156
156
- @image_cli .command (help = "Run a compute engine image as a Docker container" )
157
+ @image_cli .command (help = "Run a compute engine image as a Docker container. " )
157
158
@click .option (
158
159
"-b" ,
159
160
"--batch" ,
160
161
is_flag = True ,
161
- help = "Run the compute engine as a batch script" ,
162
+ help = "Run the compute engine as a batch script. Use with the --output "
163
+ "option to copy output out of the container." ,
162
164
)
163
165
@click .option (
164
166
"-s" ,
@@ -179,7 +181,7 @@ def build(
179
181
"-o" ,
180
182
"--output" ,
181
183
type = click .Path (path_type = pathlib .Path , dir_okay = True , file_okay = False ),
182
- help = "Write output data to this directory, which will be created if it "
184
+ help = "Write any output data to this directory, which will be created if it "
183
185
"does not exist already." ,
184
186
)
185
187
@click .option (
0 commit comments