@@ -116,7 +116,7 @@ class Point(_GeometryBase):
116
116
type : Literal ["Point" ]
117
117
coordinates : Position
118
118
119
- __wkt_coordinates__ = staticmethod (_position_wkt_coordinates )
119
+ __wkt_coordinates__ = staticmethod (_position_wkt_coordinates ) # type: ignore
120
120
121
121
@property
122
122
def has_z (self ) -> bool :
@@ -130,7 +130,7 @@ class MultiPoint(_GeometryBase):
130
130
type : Literal ["MultiPoint" ]
131
131
coordinates : MultiPointCoords
132
132
133
- __wkt_coordinates__ = staticmethod (_position_list_wkt_coordinates )
133
+ __wkt_coordinates__ = staticmethod (_position_list_wkt_coordinates ) # type: ignore
134
134
135
135
@property
136
136
def has_z (self ) -> bool :
@@ -144,7 +144,7 @@ class LineString(_GeometryBase):
144
144
type : Literal ["LineString" ]
145
145
coordinates : LineStringCoords
146
146
147
- __wkt_coordinates__ = staticmethod (_position_list_wkt_coordinates )
147
+ __wkt_coordinates__ = staticmethod (_position_list_wkt_coordinates ) # type: ignore
148
148
149
149
@property
150
150
def has_z (self ) -> bool :
@@ -158,7 +158,7 @@ class MultiLineString(_GeometryBase):
158
158
type : Literal ["MultiLineString" ]
159
159
coordinates : MultiLineStringCoords
160
160
161
- __wkt_coordinates__ = staticmethod (_lines_wtk_coordinates )
161
+ __wkt_coordinates__ = staticmethod (_lines_wtk_coordinates ) # type: ignore
162
162
163
163
@property
164
164
def has_z (self ) -> bool :
@@ -172,7 +172,7 @@ class Polygon(_GeometryBase):
172
172
type : Literal ["Polygon" ]
173
173
coordinates : PolygonCoords
174
174
175
- __wkt_coordinates__ = staticmethod (_lines_wtk_coordinates )
175
+ __wkt_coordinates__ = staticmethod (_lines_wtk_coordinates ) # type: ignore
176
176
177
177
@validator ("coordinates" )
178
178
def check_closure (cls , coordinates : List ) -> List :
@@ -218,7 +218,7 @@ class MultiPolygon(_GeometryBase):
218
218
type : Literal ["MultiPolygon" ]
219
219
coordinates : MultiPolygonCoords
220
220
221
- __wkt_coordinates__ = staticmethod (_polygons_wkt_coordinates )
221
+ __wkt_coordinates__ = staticmethod (_polygons_wkt_coordinates ) # type: ignore
222
222
223
223
@property
224
224
def has_z (self ) -> bool :
0 commit comments