Auto-format code with black

This commit is contained in:
explosion-bot 2022-12-23 08:03:51 +00:00 committed by GitHub
parent 64d2d27c5d
commit c1a74d5ec2

View File

@ -53,9 +53,7 @@ def _stream_jsonl(path: Path, field: str) -> Iterable[str]:
""" """
for entry in srsly.read_jsonl(path): for entry in srsly.read_jsonl(path):
if field not in entry: if field not in entry:
msg.fail( msg.fail(f"{path} does not contain the required '{field}' field.", exits=1)
f"{path} does not contain the required '{field}' field.", exits=1
)
else: else:
yield entry[field] yield entry[field]
@ -118,8 +116,10 @@ def apply(
paths = walk_directory(data_path) paths = walk_directory(data_path)
if len(paths) == 0: if len(paths) == 0:
docbin.to_disk(output_file) docbin.to_disk(output_file)
msg.warn("Did not find data to process," msg.warn(
f" {data_path} seems to be an empty directory.") "Did not find data to process,"
f" {data_path} seems to be an empty directory."
)
return return
nlp = load_model(model) nlp = load_model(model)
msg.good(f"Loaded model {model}") msg.good(f"Loaded model {model}")