File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ impl PyKDTreeInner {
216216 }
217217}
218218
219- #[ pyclass( name = "KDTree" ) ]
219+ #[ pyclass( name = "KDTree" , frozen ) ]
220220pub struct PyKDTree ( PyKDTreeInner ) ;
221221
222222#[ pymethods]
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ impl PyKDTreeMetadataInner {
3333 }
3434}
3535
36- #[ pyclass( name = "KDTreeMetadata" ) ]
36+ #[ pyclass( name = "KDTreeMetadata" , frozen ) ]
3737pub struct PyKDTreeMetadata ( PyKDTreeMetadataInner ) ;
3838
3939#[ pymethods]
Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ enum PyRTreeInner {
334334 Float64 ( Arc < RTree < f64 > > ) ,
335335}
336336
337- #[ pyclass( name = "RTree" ) ]
337+ #[ pyclass( name = "RTree" , frozen ) ]
338338pub struct PyRTree ( PyRTreeInner ) ;
339339
340340impl PyRTreeInner {
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ impl PyRTreeMetadataInner {
4747 }
4848}
4949
50- #[ pyclass( name = "RTreeMetadata" ) ]
50+ #[ pyclass( name = "RTreeMetadata" , frozen ) ]
5151pub struct PyRTreeMetadata ( PyRTreeMetadataInner ) ;
5252
5353#[ pymethods]
You can’t perform that action at this time.
0 commit comments