Skip to content

Commit 48ac216

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b8cb9bf commit 48ac216

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

nc_py_api/ex_app/providers/task_processing.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ def next_task(self, provider_ids: list[str], task_types: list[str]) -> dict[str,
142142
return r
143143
return {}
144144

145-
def next_task_batch(self, provider_ids: list[str], task_types: list[str], number_of_tasks: int) -> dict[str, typing.Any]:
145+
def next_task_batch(
146+
self, provider_ids: list[str], task_types: list[str], number_of_tasks: int
147+
) -> dict[str, typing.Any]:
146148
"""
147149
Get the next n task processing tasks from Nextcloud.
148150
Available starting with Nextcloud 33
@@ -235,7 +237,9 @@ async def next_task(self, provider_ids: list[str], task_types: list[str]) -> dic
235237
return r
236238
return {}
237239

238-
async def next_task_batch(self, provider_ids: list[str], task_types: list[str], number_of_tasks: int) -> dict[str, typing.Any]:
240+
async def next_task_batch(
241+
self, provider_ids: list[str], task_types: list[str], number_of_tasks: int
242+
) -> dict[str, typing.Any]:
239243
"""
240244
Get the next n task processing tasks from Nextcloud.
241245
Available starting with Nextcloud 33

0 commit comments

Comments
 (0)