Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay committed Nov 23, 2023
1 parent 6507a74 commit 62d9511
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ impl From<Vec<PointId>> for PointsSelector {

impl From<Vec<f32>> for Vector {
fn from(vector: Vec<f32>) -> Self {
Vector { data: vector, indices: None }
Vector {
data: vector,
indices: None,
}
}
}

Expand Down

0 comments on commit 62d9511

Please sign in to comment.