Silence new clippy false positive
Previously silenced ones now appear to work correctly.
This commit is contained in:
parent
fc05905e4e
commit
ef34bb311c
|
@ -1,5 +1,6 @@
|
||||||
// borrow_deref_ref doesn't get macro detection right, allow for now
|
// unnecessary_fallible_converions doesn't get macro detection right, allow for now
|
||||||
#![allow(clippy::from_iter_instead_of_collect, clippy::borrow_deref_ref)]
|
// https://github.com/rust-lang/rust-clippy/issues/12039
|
||||||
|
#![allow(clippy::unnecessary_fallible_conversions)]
|
||||||
|
|
||||||
use std::convert::TryFrom;
|
use std::convert::TryFrom;
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
|
|
Loading…
Reference in New Issue