Skip to content

Commit 4a5e498

Browse files
committed
fmt
1 parent 3e743d9 commit 4a5e498

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • lib/edge/python/src/types/filter

lib/edge/python/src/types/filter/geo.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use segment::types::{
66
GeoBoundingBox, GeoLineString, GeoPoint, GeoPolygon, GeoPolygonShadow, GeoRadius,
77
};
88

9-
109
#[pyclass(name = "GeoPoint")]
1110
#[derive(Clone, Debug, Into)]
1211
pub struct PyGeoPoint(pub GeoPoint);
@@ -46,7 +45,7 @@ impl PyGeoRadius {
4645
pub fn new(center: PyGeoPoint, radius: f64) -> Self {
4746
Self(GeoRadius {
4847
center: center.0,
49-
radius: OrderedFloat(radius)
48+
radius: OrderedFloat(radius),
5049
})
5150
}
5251
}

0 commit comments

Comments
 (0)