Skip to content

Commit

Permalink
fix(complain): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
saber-solooki committed Jan 7, 2025
1 parent 6098152 commit 9ffe73b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion arq/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ def __repr__(self) -> str:
enqueued_jobs = 0



class ArqRedis(BaseRedis):
"""
Thin subclass of ``redis.asyncio.Redis`` which adds :func:`arq.connections.enqueue_job`.
Expand Down
2 changes: 1 addition & 1 deletion arq/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def func(

if isinstance(coroutine, str):
name = name or coroutine
coroutine_: 'WorkerCoroutine' = import_string(coroutine)
coroutine_: WorkerCoroutine = import_string(coroutine)
else:
coroutine_ = coroutine

Expand Down

0 comments on commit 9ffe73b

Please sign in to comment.