Skip to content

Commit 75c59ed

Browse files
fix flake8 issue: F541 f-string is missing placeholders
1 parent cd63a9f commit 75c59ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_pydantic/converters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def convert_pydantic_type(
123123
# TODO: _should_ Sets remain here?
124124
return List(graphene_type)
125125
elif field.shape in SHAPE_MAPPING:
126-
raise ConversionError(f"Don't know how to handle mappings in Graphene.")
126+
raise ConversionError("Don't know how to handle mappings in Graphene.")
127127

128128

129129
def find_graphene_type(

0 commit comments

Comments
 (0)