diff --git a/rust/lancedb/src/table.rs b/rust/lancedb/src/table.rs index 207449241..b0df27450 100644 --- a/rust/lancedb/src/table.rs +++ b/rust/lancedb/src/table.rs @@ -1645,7 +1645,7 @@ impl Table { &self, name: &str, from: impl Into, - ) -> Result { + ) -> Result { let inner = self.inner.create_branch(name, from.into()).await?; Ok(Self { inner, @@ -1655,7 +1655,7 @@ impl Table { } /// Check out an existing branch and return a handle scoped to it. - pub async fn checkout_branch(&self, name: &str) -> Result
{ + pub async fn checkout_branch(&self, name: &str) -> Result { let inner = self.inner.checkout_branch(name).await?; Ok(Self { inner,