File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 2020 - name : Run tests
2121 run : cargo nextest run --all-features
2222
23+ - name : Check formatting
24+ run : cargo fmt --all -- --check
25+
2326 - name : Check clippy
2427 run : cargo clippy --all-targets --all-features
2528
Original file line number Diff line number Diff line change @@ -374,7 +374,11 @@ impl Display for ParsingError {
374374 // `os_str_display` is stabilised in 1.87.0
375375 // https://github.com/rust-lang/rust/issues/120048
376376 // use `value.display()` if you don't care about rust <1.87.0
377- write ! ( f, "leftover value: {}" , String :: from_utf8_lossy( value. as_bytes( ) ) )
377+ write ! (
378+ f,
379+ "leftover value: {}" ,
380+ String :: from_utf8_lossy( value. as_bytes( ) )
381+ )
378382 }
379383
380384 Self :: UnexpectedArg {
You can’t perform that action at this time.
0 commit comments