Skip to content

Commit c18298d

Browse files
committed
lint
1 parent e7c1628 commit c18298d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/warnet/deploy.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -299,11 +299,7 @@ def deploy_network(directory: Path, debug: bool = False, namespace: Optional[str
299299

300300
needs_ln_init = False
301301
for node in network_file["nodes"]:
302-
if (
303-
"lnd" in node
304-
and "channels" in node["lnd"]
305-
and len(node["lnd"]["channels"]) > 0
306-
):
302+
if "lnd" in node and "channels" in node["lnd"] and len(node["lnd"]["channels"]) > 0:
307303
needs_ln_init = True
308304
break
309305

0 commit comments

Comments
 (0)