Skip to content

Commit a8b9f17

Browse files
committed
fix(typing): fix mypy error
1 parent 49c9104 commit a8b9f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/parser/src/extending_built_in_models_with_json_mypy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class CancelOrder(BaseModel):
1111

1212

1313
class CancelOrderModel(APIGatewayProxyEventV2Model):
14-
body: Json[CancelOrder] # type: ignore[assignment]
14+
body: Json[CancelOrder] # type: ignore[type-arg]
1515

1616

1717
@event_parser(model=CancelOrderModel)

0 commit comments

Comments
 (0)