@@ -940,7 +940,7 @@ class ListEntitiesResponse(AttrsJSONDecodeMixin):
940940 """ # noqa: E501
941941
942942 entity_summary_list : List [EntitySummary ] = field (
943- converter = lambda x : [EntitySummary .from_json (a ) for a in x ] if x else [], # type: ignore
943+ converter = lambda x : [EntitySummary .from_json (a ) for a in x ] if x else [],
944944 on_setattr = NO_OP ,
945945 metadata = {"alias" : "EntitySummaryList" },
946946 )
@@ -995,7 +995,7 @@ class ChangeSummary(AttrsJSONDecodeMixin):
995995 """This object contains details specific to the change type of the requested change."""
996996
997997 error_details : List [ErrorDetail ] = field (
998- converter = lambda x : [ErrorDetail .from_json (a ) for a in x ] if x else [], # type: ignore
998+ converter = lambda x : [ErrorDetail .from_json (a ) for a in x ] if x else [],
999999 on_setattr = NO_OP ,
10001000 metadata = {"alias" : "ErrorDetailList" },
10011001 )
@@ -1066,7 +1066,7 @@ class DescribeChangeSetReponse(AttrsJSONDecodeMixin):
10661066 """Returned if there is a failure on the change set, but that failure is not related to any of the changes in the request.""" # noqa: E501
10671067
10681068 change_set : List [ChangeSummary ] = field (
1069- converter = lambda x : [ChangeSummary .from_json (a ) for a in x ] if x else [], # type: ignore
1069+ converter = lambda x : [ChangeSummary .from_json (a ) for a in x ] if x else [],
10701070 on_setattr = NO_OP ,
10711071 metadata = {"alias" : "ChangeSet" },
10721072 )
@@ -1148,7 +1148,7 @@ class ListChangeSetsResponse(AttrsJSONDecodeMixin):
11481148 """The describe_entity response's metadata."""
11491149
11501150 change_set_list : List [ListChangeSet ] = field (
1151- converter = lambda x : [ListChangeSet .from_json (a ) for a in x ] if x else [], # type: ignore
1151+ converter = lambda x : [ListChangeSet .from_json (a ) for a in x ] if x else [],
11521152 on_setattr = NO_OP ,
11531153 metadata = {"alias" : "ChangeSetSummaryList" },
11541154 )
0 commit comments