mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-04 02:39:28 +00:00
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:
parent
5356fdcf89
commit
4ae2627ade
26 changed files with 61 additions and 84 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue