Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Moosems committed Sep 7, 2024
1 parent ea50807 commit c045434
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion collegamento/client_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ def run_tasks(self) -> None:
for request in request_list
]

requests_list = sorted(requests_list, key=lambda request: command_sort_func(request, self.priority_commands))
requests_list = sorted(
requests_list,
key=lambda request: command_sort_func(
request, self.priority_commands
),
)

for request in requests_list:
if request is None:
Expand Down

0 comments on commit c045434

Please sign in to comment.