Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wellheor1 committed Dec 14, 2024
1 parent 4248838 commit 9cf8db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/directions/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4704,7 +4704,7 @@ def send_results_to_hospital(request):
if not directions_ids:
return status_response(False, "Empty directions ids")

directions_ids_chunks = [directions_ids[i:i + 20] for i in range(0, len(directions_ids), 20)]
directions_ids_chunks = [directions_ids[i : i + 20] for i in range(0, len(directions_ids), 20)]

for directions_ids_chunk in directions_ids_chunks:
ids_from = directions_ids_chunk[0]
Expand Down

0 comments on commit 9cf8db6

Please sign in to comment.