Skip to content

Commit ca30b06

Browse files
committed
lint
1 parent 2b25610 commit ca30b06

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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 > [email protected]"
134134
elif ont.zip_extract_file:
135-
command = (f"curl -L -s {ont.url} > [email protected] && "
136-
"unzip -p [email protected] {ont.zip_extract_file} "
137-
135+
command = (
136+
f"curl -L -s {ont.url} > [email protected] && "
137+
"unzip -p [email protected] {ont.zip_extract_file} "
138+
139+
)
138140
else:
139141
command = f"curl -L -s {ont.url} > [email protected]"
140142
download_rule = MakefileRule(

0 commit comments

Comments
 (0)