Skip to content

Commit ca30b06

Browse files
committed
lint
1 parent 2b25610 commit ca30b06

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/semsql/builder/builder.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,11 @@ def compile_registry(registry_path: str, local_prefix_file: TextIO = None) -> st
132132
if ont == generic:
133133
command = "curl -L -s http://purl.obolibrary.org/obo/$*.owl > $@.tmp"
134134
elif ont.zip_extract_file:
135-
command = (f"curl -L -s {ont.url} > $@.zip.tmp && "
136-
"unzip -p $@.zip.tmp {ont.zip_extract_file} "
137-
"> $@.tmp && rm $@.zip.tmp")
135+
command = (
136+
f"curl -L -s {ont.url} > $@.zip.tmp && "
137+
"unzip -p $@.zip.tmp {ont.zip_extract_file} "
138+
"> $@.tmp && rm $@.zip.tmp"
139+
)
138140
else:
139141
command = f"curl -L -s {ont.url} > $@.tmp"
140142
download_rule = MakefileRule(

0 commit comments

Comments
 (0)