Skip to content

Commit c932dd0

Browse files
committed
Lint
1 parent 8773414 commit c932dd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphene_pydantic/inputobjecttype.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ def __init_subclass_with_meta__(
8080
_meta=None,
8181
**options,
8282
):
83-
assert (
84-
model and issubclass(model, pydantic.BaseModel)
83+
assert model and issubclass(
84+
model, pydantic.BaseModel
8585
), f'You need to pass a valid Pydantic model in {cls.__name__}.Meta, received "{model}"'
8686

8787
assert isinstance(

0 commit comments

Comments
 (0)