Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed Mar 26, 2024
1 parent 26e4ad6 commit b1e820d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/task_manager/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2024-present jefer94 <[email protected]>
#
# SPDX-License-Identifier: LGPL-3.0-or-later
__version__ = "1.3.0"
__version__ = "1.3.1"
2 changes: 1 addition & 1 deletion src/task_manager/django/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def eta(self, eta, overwrite=False):


@lru_cache
def schedule_task(task: Callable, eta: str) -> Callable[..., None]:
def schedule_task(task: Callable, eta: str) -> ScheduledTaskManager:
"""
Schedule a task, it returns a scheduled task manager.
Expand Down

0 comments on commit b1e820d

Please sign in to comment.