chore: linting

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-07-24 14:30:46 -07:00
parent 8d1e2a5134
commit 4a727a2c57
41 changed files with 114 additions and 133 deletions

View file

@ -75,9 +75,7 @@ async def step1_search(sess, state: dict) -> bool:
)
for it in items[:5]:
print(f" - {it.get('jobKey')} | {it.get('title')} @ {it.get('company')}")
state["job_url"] = next(
(it["jobUrl"] for it in items if it.get("jobUrl")), None
)
state["job_url"] = next((it["jobUrl"] for it in items if it.get("jobUrl")), None)
return _check("search returned jobs", len(items) > 0, f"{len(items)} jobs")