Skip to content

Commit

Permalink
Remove redundant f-string declaration as it has no placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-vari committed Oct 18, 2024
1 parent 1ae8b51 commit eeffb2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/case/views/case.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def case_list_page_view(request):
],
},
}
return render_react_page(request, f"Cases", "case-list", context)
return render_react_page(request, "Cases", "case-list", context)


@api_view(["GET"])
Expand Down

0 comments on commit eeffb2a

Please sign in to comment.