kani: Remove redundant import

`cargo` is reporting a redundant import warning:

 warning: the item `TryInto` is imported redundantly

Remove the import statement from the `verification` module.
This commit is contained in:
Tobin C. Harding 2024-04-16 06:14:33 +10:00
parent 4d9449e0f9
commit 17bacc6fb6
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 1 deletions

View File

@ -1885,7 +1885,6 @@ pub mod serde {
#[cfg(kani)]
mod verification {
use std::cmp;
use std::convert::TryInto;
use super::*;