PEP 8 compliance.

This commit is contained in:
yrriban 2025-08-01 02:07:06 -04:00
parent 1ee4ea4dc6
commit 70e1a3a39e

View file

@ -59,6 +59,8 @@ class Fetch(dcc.config.Base):
if fetcher_path is None: if fetcher_path is None:
raise Exception(f"Fetch util {fetcher} not found on PATH.") raise Exception(f"Fetch util {fetcher} not found on PATH.")
proc = subprocess.run([fetcher_path, url], capture_output=True, check = True) proc = subprocess.run(
[fetcher_path, url],
capture_output=True, check=True
)
return json.loads(proc.stdout) return json.loads(proc.stdout)