Skip to content

Commit

Permalink
Precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbruinsslot committed Jan 8, 2025
1 parent 4c042f7 commit defa125
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion boefjes/boefjes/clients/scheduler_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ class SchedulerClientInterface:
def get_queues(self) -> list[Queue]:
raise NotImplementedError()

def pop_item(self, queue_id: str) -> Task | None:
def pop_item(self, scheduler_id: str) -> PaginatedTasksResponse | None:
raise NotImplementedError()

def pop_items(self, scheduler_id: str, filters: dict[str, Any]) -> PaginatedTasksResponse | None:
raise NotImplementedError()

def patch_task(self, task_id: uuid.UUID, status: TaskStatus) -> None:
Expand Down

0 comments on commit defa125

Please sign in to comment.