error: variables can be used directly in the `format!` string
--> arrow-schema/src/datatype.rs:470:21
|
470 | write!(f, "{}", fields_str)?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-D clippy::uninlined-format-args` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]`
help: change this to
|
4[70](https://github.com/apache/arrow-rs/actions/runs/15911507173/job/44879755777#step:6:71) - write!(f, "{}", fields_str)?;
470 + write!(f, "{fields_str}")?;