Format code

Signed-off-by: Xuanwo <github@xuanwo.io>
This commit is contained in:
Xuanwo
2025-09-09 01:08:02 +08:00
parent c36409d3b8
commit a8f57e8043

View File

@@ -90,10 +90,7 @@ impl Query {
#[napi]
pub fn disable_scoring_autoprojection(&mut self) {
self.inner = self
.inner
.clone()
.disable_scoring_autoprojection();
self.inner = self.inner.clone().disable_scoring_autoprojection();
}
#[napi(catch_unwind)]
@@ -275,10 +272,7 @@ impl VectorQuery {
#[napi]
pub fn disable_scoring_autoprojection(&mut self) {
self.inner = self
.inner
.clone()
.disable_scoring_autoprojection();
self.inner = self.inner.clone().disable_scoring_autoprojection();
}
#[napi]