A few more format arg inlining

Used these commands and some manual searching

```
cargo clippy --fix  --all-targets --workspace --exclude gstreamer-player --exclude i-slint-backend-linuxkms --exclude uefi-demo --exclude ffmpeg -- -A clippy::all -W clippy::uninlined_format_args
cargo clippy --all-targets -- -A clippy::all -W clippy::uninlined_format_args
cargo clippy --fix -- -A clippy::all -W clippy::uninlined_format_args
```
This commit is contained in:
Yuri Astrakhan 2025-02-06 01:57:43 -05:00 committed by Olivier Goffart
parent 5356fdcf89
commit 4ae2627ade
26 changed files with 61 additions and 84 deletions

View file

@ -50,7 +50,7 @@ impl<'a> ToPyObject for PyValueRef<'a> {
crate::brush::PyBrush::from(brush.clone()).into_py(py)
}
v @ _ => {
eprintln!("Python: conversion from slint to python needed for {:#?} and not implemented yet", v);
eprintln!("Python: conversion from slint to python needed for {v:#?} and not implemented yet");
().into_py(py)
}
}