Fixed an unnecessary f-string

This commit is contained in:
Simon Willison 2024-02-04 10:15:21 -08:00
commit 5ea7098e4d

View file

@ -16,6 +16,6 @@ def extra_js_urls(view_name):
if view_name in PERMITTED_VIEWS: if view_name in PERMITTED_VIEWS:
return [ return [
{ {
"url": f"/static/table-example-plugins.js", "url": "/static/table-example-plugins.js",
} }
] ]