File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ lint-rust:
89
89
-A clippy::struct-excessive-bools \
90
90
-A clippy::too-many-lines \
91
91
-A clippy::unnecessary-wraps \
92
- -A clippy::unnested-or-patterns \
93
92
-A clippy::unused-self \
94
93
-A clippy::used-underscore-binding
95
94
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ impl CombinedSerializer {
177
177
. map_err ( |err| py_schema_error_type ! ( "Error building `function-wrap` serializer:\n {}" , err) ) ;
178
178
}
179
179
// applies to lists tuples and dicts, does not override the main schema `type`
180
- Some ( "include-exclude-sequence" ) | Some ( "include-exclude-dict" ) => ( ) ,
180
+ Some ( "include-exclude-sequence" | "include-exclude-dict" ) => ( ) ,
181
181
// applies specifically to bytes, does not override the main schema `type`
182
182
Some ( "base64" ) => ( ) ,
183
183
Some ( ser_type) => {
Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ fn parse_multihost_url<'url, 'input>(
334
334
loop {
335
335
let peek = chars. peek ( ) ;
336
336
match peek {
337
- Some ( & '/' ) | Some ( & '\\' ) => {
337
+ Some ( & '/' | & '\\' ) => {
338
338
chars. next ( ) ;
339
339
}
340
340
_ => break ,
You can’t perform that action at this time.
0 commit comments