You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser=argparse.ArgumentParser(description="Collect various counts from a corpus of Bible extracts")
243
266
parser.add_argument(
244
267
"folder",
245
-
help="An experiment folder (typically in MT/experiments) that contains a config.yml file. The results will be saved in this folder.",
268
+
help="An experiment folder (typically in MT/experiments) that contains a config.yml file."
269
+
" The results will be saved in this folder.",
246
270
)
247
271
parser.add_argument(
248
272
"--input-folder", default=SIL_NLP_ENV.mt_scripture_dir, help="Folder with corpus of Bible extract files."
@@ -273,7 +297,8 @@ def main() -> None:
273
297
iffile_patterns=="":
274
298
ifnotfolder.exists():
275
299
LOGGER.error(
276
-
f"Folder {folder} does not exist. Please provide an experiment folder, typically in MT/experiments, containing a config.yml file or a list of files with the --files argument."
300
+
f"Folder {folder} does not exist. Please provide an experiment folder, typically in MT/experiments,"
301
+
" containing a config.yml file or a list of files with the --files argument."
0 commit comments