Skip to content

Commit

Permalink
remove unnecessary conversion from list to tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
srabraham committed Nov 14, 2024
1 parent 01eb946 commit 2ad34d0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/ims/element/incident/incidents/_incidents.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,4 @@ async def incident_types(
) -> KleinRenderable:
types = await self.config.store.incidentTypes()
types = sorted(t for t in types)
types = tuple(t for t in types)
return jsonTextFromObject(types)

0 comments on commit 2ad34d0

Please sign in to comment.