This is an automated email from the ASF dual-hosted git repository. yuxia pushed a commit to branch allow-batch-poll in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
commit 50b5ee431d15762c2183ec0d28d6ee1447baf8df Author: luoyuxia <[email protected]> AuthorDate: Sat Jan 17 09:47:05 2026 +0800 fix fmt --- bindings/python/src/table.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bindings/python/src/table.rs b/bindings/python/src/table.rs index 0c5b493..a3f2444 100644 --- a/bindings/python/src/table.rs +++ b/bindings/python/src/table.rs @@ -166,7 +166,11 @@ impl AppendWriter { } /// Append a single row to the table - pub fn append<'py>(&self, py: Python<'py>, row: &Bound<'py, PyAny>) -> PyResult<Bound<'py, PyAny>> { + pub fn append<'py>( + &self, + py: Python<'py>, + row: &Bound<'py, PyAny>, + ) -> PyResult<Bound<'py, PyAny>> { let generic_row = python_to_generic_row(row, &self.table_info)?; let inner = self.inner.clone();
