Skip to content

Commit de1a853

Browse files
actions-userhleb-albau
authored andcommitted
image quality de-ser bug
1 parent 01fe76f commit de1a853

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

regula/documentreader/webclient/gen/models/area_array.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class AreaArray(object):
3333
"""
3434
openapi_types = {
3535
'list': 'list[RectangleCoordinates]',
36-
'points': 'PointArray'
36+
'points': 'list[PointArray]'
3737
}
3838

3939
attribute_map = {
@@ -83,7 +83,7 @@ def points(self):
8383
8484
8585
:return: The points of this AreaArray. # noqa: E501
86-
:rtype: PointArray
86+
:rtype: list[PointArray]
8787
"""
8888
return self._points
8989

@@ -93,7 +93,7 @@ def points(self, points):
9393
9494
9595
:param points: The points of this AreaArray. # noqa: E501
96-
:type points: PointArray
96+
:type points: list[PointArray]
9797
"""
9898

9999
self._points = points

0 commit comments

Comments
 (0)