Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion taskiq/decor.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def kicker(self) -> AsyncKicker[_FuncParams, _ReturnType]:
"""
This function returns kicker object.

Kicker is a object that can modify kiq request
Kicker is an object that can modify kiq request
before sending it.

:return: AsyncKicker instance.
Expand Down
1 change: 0 additions & 1 deletion taskiq/kicker.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ async def schedule_by_cron(
:param source: schedule source.
:param cron: cron expression.
:param args: function's args.
:param cron_offset: cron offset.
:param kwargs: function's kwargs.
:return: schedule id.
Expand Down
2 changes: 1 addition & 1 deletion taskiq/serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def exception_to_python(
"""Convert serialized exception to Python exception.

:param exc: encoded exception
:raises SecurityError: exception isn't indead an exception
:raises SecurityError: exception isn't indeed an exception
:return: decoded exception or None
"""
if not exc:
Expand Down
2 changes: 1 addition & 1 deletion taskiq/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async def wait_result(
ready. And if it is it returns the result.
It may throw TaskiqResultTimeoutError if
task didn't became ready in provided
task didn't become ready in provided
period of time.
:param check_interval: How often checks are performed.
Expand Down