@@ -35,37 +35,37 @@ class Area(OracleToleranceMixin, GeoFunc):
35
35
def as_sqlite (self , compiler : SQLCompiler , connection : BaseDatabaseWrapper , ** extra_context : Any ) -> _AsSqlType : ...
36
36
37
37
class Azimuth (GeoFunc ):
38
- output_field : ClassVar [FloatField ] # type: ignore[assignment]
38
+ output_field : ClassVar [FloatField ]
39
39
arity : int
40
40
geom_param_pos : Any
41
41
42
42
class AsGeoJSON (GeoFunc ):
43
- output_field : ClassVar [TextField ] # type: ignore[assignment]
43
+ output_field : ClassVar [TextField ]
44
44
def __init__ (
45
45
self , expression : Any , bbox : bool = ..., crs : bool = ..., precision : int = ..., ** extra : Any
46
46
) -> None : ...
47
47
def as_oracle (self , compiler : SQLCompiler , connection : BaseDatabaseWrapper , ** extra_context : Any ) -> _AsSqlType : ...
48
48
49
49
class AsGML (GeoFunc ):
50
50
geom_param_pos : Any
51
- output_field : ClassVar [TextField ] # type: ignore[assignment]
51
+ output_field : ClassVar [TextField ]
52
52
def __init__ (self , expression : Any , version : int = ..., precision : int = ..., ** extra : Any ) -> None : ...
53
53
def as_oracle (self , compiler : SQLCompiler , connection : BaseDatabaseWrapper , ** extra_context : Any ) -> _AsSqlType : ...
54
54
55
55
class AsKML (GeoFunc ):
56
- output_field : ClassVar [TextField ] # type: ignore[assignment]
56
+ output_field : ClassVar [TextField ]
57
57
def __init__ (self , expression : Any , precision : int = ..., ** extra : Any ) -> None : ...
58
58
59
59
class AsSVG (GeoFunc ):
60
- output_field : ClassVar [TextField ] # type: ignore[assignment]
60
+ output_field : ClassVar [TextField ]
61
61
def __init__ (self , expression : Any , relative : bool = ..., precision : int = ..., ** extra : Any ) -> None : ...
62
62
63
63
class AsWKB (GeoFunc ):
64
- output_field : ClassVar [BinaryField ] # type: ignore[assignment]
64
+ output_field : ClassVar [BinaryField ]
65
65
arity : int
66
66
67
67
class AsWKT (GeoFunc ):
68
- output_field : ClassVar [TextField ] # type: ignore[assignment]
68
+ output_field : ClassVar [TextField ]
69
69
arity : int
70
70
71
71
class BoundingCircle (OracleToleranceMixin , GeomOutputGeoFunc ):
@@ -84,7 +84,7 @@ class DistanceResultMixin:
84
84
def output_field (self ) -> DistanceField : ...
85
85
def source_is_geography (self ) -> Any : ...
86
86
87
- class Distance (DistanceResultMixin , OracleToleranceMixin , GeoFunc ): # type: ignore[misc]
87
+ class Distance (DistanceResultMixin , OracleToleranceMixin , GeoFunc ):
88
88
geom_param_pos : Any
89
89
spheroid : Any
90
90
def __init__ (self , expr1 : Any , expr2 : Any , spheroid : Any | None = ..., ** extra : Any ) -> None : ...
@@ -100,20 +100,20 @@ class ForcePolygonCW(GeomOutputGeoFunc):
100
100
arity : int
101
101
102
102
class FromWKB (GeoFunc ):
103
- output_field : ClassVar [GeometryField ] # type: ignore[assignment]
103
+ output_field : ClassVar [GeometryField ]
104
104
arity : int
105
105
106
106
class FromWKT (GeoFunc ):
107
- output_field : ClassVar [GeometryField ] # type: ignore[assignment]
107
+ output_field : ClassVar [GeometryField ]
108
108
arity : int
109
109
110
110
class GeoHash (GeoFunc ):
111
- output_field : ClassVar [TextField ] # type: ignore[assignment]
111
+ output_field : ClassVar [TextField ]
112
112
def __init__ (self , expression : Any , precision : Any | None = ..., ** extra : Any ) -> None : ...
113
113
def as_mysql (self , compiler : SQLCompiler , connection : BaseDatabaseWrapper , ** extra_context : Any ) -> _AsSqlType : ...
114
114
115
115
class GeometryDistance (GeoFunc ):
116
- output_field : ClassVar [FloatField ] # type: ignore[assignment]
116
+ output_field : ClassVar [FloatField ]
117
117
arity : int
118
118
function : str
119
119
arg_joiner : str
@@ -125,14 +125,14 @@ class Intersection(OracleToleranceMixin, GeomOutputGeoFunc):
125
125
126
126
class IsEmpty (GeoFuncMixin , StandardTransform ):
127
127
lookup_name : str
128
- output_field : ClassVar [BooleanField ] # type: ignore[assignment]
128
+ output_field : ClassVar [BooleanField ]
129
129
130
130
class IsValid (OracleToleranceMixin , GeoFuncMixin , StandardTransform ):
131
131
lookup_name : str
132
- output_field : ClassVar [BooleanField ] # type: ignore[assignment]
132
+ output_field : ClassVar [BooleanField ]
133
133
def as_oracle (self , compiler : SQLCompiler , connection : BaseDatabaseWrapper , ** extra_context : Any ) -> _AsSqlType : ...
134
134
135
- class Length (DistanceResultMixin , OracleToleranceMixin , GeoFunc ): # type: ignore[misc]
135
+ class Length (DistanceResultMixin , OracleToleranceMixin , GeoFunc ):
136
136
spheroid : Any
137
137
def __init__ (self , expr1 : Any , spheroid : bool = ..., ** extra : Any ) -> None : ...
138
138
def as_postgresql (
@@ -141,25 +141,25 @@ class Length(DistanceResultMixin, OracleToleranceMixin, GeoFunc): # type: ignor
141
141
def as_sqlite (self , compiler : SQLCompiler , connection : BaseDatabaseWrapper , ** extra_context : Any ) -> _AsSqlType : ...
142
142
143
143
class LineLocatePoint (GeoFunc ):
144
- output_field : ClassVar [FloatField ] # type: ignore[assignment]
144
+ output_field : ClassVar [FloatField ]
145
145
arity : int
146
146
geom_param_pos : Any
147
147
148
148
class MakeValid (GeomOutputGeoFunc ): ...
149
149
150
150
class MemSize (GeoFunc ):
151
- output_field : ClassVar [IntegerField ] # type: ignore[assignment]
151
+ output_field : ClassVar [IntegerField ]
152
152
arity : int
153
153
154
154
class NumGeometries (GeoFunc ):
155
- output_field : ClassVar [IntegerField ] # type: ignore[assignment]
155
+ output_field : ClassVar [IntegerField ]
156
156
arity : int
157
157
158
158
class NumPoints (GeoFunc ):
159
- output_field : ClassVar [IntegerField ] # type: ignore[assignment]
159
+ output_field : ClassVar [IntegerField ]
160
160
arity : int
161
161
162
- class Perimeter (DistanceResultMixin , OracleToleranceMixin , GeoFunc ): # type: ignore[misc]
162
+ class Perimeter (DistanceResultMixin , OracleToleranceMixin , GeoFunc ):
163
163
arity : int
164
164
def as_postgresql (
165
165
self , compiler : SQLCompiler , connection : BaseDatabaseWrapper , ** extra_context : Any
0 commit comments