fix(src): pylint fix
Some checks failed
Actions / Lint (push) Failing after 0s
Actions / Build and Push Images (push) Successful in 23s

This commit is contained in:
cswimr 2025-02-14 09:22:18 -06:00
parent 3fb3d226cc
commit 16847801fd
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -94,7 +94,7 @@ async def fetch_tasks():
run = task
elif task["name"] == config.task_name:
run = task
if run["name"] == config.task_name:
if run is not None and run["name"] == config.task_name:
app.logger.debug("Found task '%s'\n%s", run["name"], run)
return run["url"]