Skip to content

Commit

Permalink
style: remove unnecessary f-strings (#58)
Browse files Browse the repository at this point in the history
Co-authored-by: pixeebot[bot] <23113631+pixeebot@users.noreply.github.com>
pixeebot[bot] and pixeebot authored Feb 8, 2024
1 parent b9e5f98 commit 1eddb8f
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/flask_muck/open_api.py
Original file line number Diff line number Diff line change
@@ -150,7 +150,7 @@ def update_spec_from_muck_view(
"get": {
"summary": f"List {resource_name} resources",
"description": f"Fetches {resource_name} resources with support for searching, filtering, "
f"sorting and pagination.",
"sorting and pagination.",
"tags": [tag_name],
"parameters": [
{
2 changes: 1 addition & 1 deletion src/flask_muck/utils.py
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ def get_fk_column(
return column
raise MuckImplementationError(
f"The {child_model.__name__} model does not have a foreign key to the {parent_model.__name__} model. "
f"Your MuckApiView parents are not configured correctly."
"Your MuckApiView parents are not configured correctly."
)


0 comments on commit 1eddb8f

Please sign in to comment.