Skip to content

Commit

Permalink
fix: comment out sort function
Browse files Browse the repository at this point in the history
Signed-off-by: Colton Wolkins (Laptop) <[email protected]>
  • Loading branch information
TheTechmage committed Jan 29, 2025
1 parent 0134742 commit a100a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acapy_agent/protocols_v2/connections/v1_0/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ async def connections_list(request: web.BaseRequest):
alt=True,
)
results = [record.serialize() for record in records]
results.sort(key=connection_sort_key)
#results.sort(key=connection_sort_key)
except (StorageError, BaseModelError) as err:
raise web.HTTPBadRequest(reason=err.roll_up) from err

Expand Down

0 comments on commit a100a5d

Please sign in to comment.