Skip to content

Commit e351fab

Browse files
cpsievertclaude
andcommitted
style(python): fix Rust formatting
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 0d0d5f3 commit e351fab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ggsql-python/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ fn render(ipc_bytes: &Bound<'_, PyBytes>, viz: &str, writer: &str) -> PyResult<S
2626
// Read DataFrame from IPC bytes
2727
let bytes = ipc_bytes.as_bytes();
2828
let cursor = Cursor::new(bytes);
29-
let df: DataFrame = IpcReader::new(cursor)
30-
.finish()
31-
.map_err(|e| PyErr::new::<pyo3::exceptions::PyValueError, _>(format!("Failed to read IPC data: {}", e)))?;
29+
let df: DataFrame = IpcReader::new(cursor).finish().map_err(|e| {
30+
PyErr::new::<pyo3::exceptions::PyValueError, _>(format!("Failed to read IPC data: {}", e))
31+
})?;
3232

3333
// Parse the visualization spec
3434
// The viz string should be a complete VISUALISE statement

0 commit comments

Comments
 (0)