Skip to content

Commit 8362d09

Browse files
KonstantAnxietyovsds
authored andcommitted
fix: BI-7173 fix types in source listing RQE schema (fa3123b97)
1 parent 6fa39bd commit 8362d09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/dl_core/dl_core/connection_executors/qe_serializer/schemas_common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ def to_object(self, data: dict[str, Any]) -> Any:
188188

189189
class PageIdentSchema(BaseQEAPISchema):
190190
search_text = fields.String(allow_none=True)
191-
limit = fields.String(allow_none=True)
192-
offset = fields.String(allow_none=True)
191+
limit = fields.Integer(allow_none=True)
192+
offset = fields.Integer(allow_none=True)
193193

194194
def to_object(self, data: dict[str, Any]) -> PageIdent:
195195
return PageIdent(**data)

0 commit comments

Comments
 (0)