mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
remove unused imports: Deserialize
, Serialize
compiler warning for nu-protocol/src/example.rs (#8514)
when running the tests inside nu-protocol we were getting a compiler warning... this PR removes the compiler warning from nu-protocol. by adding ```rust #[allow(unused_imports)] ```
This commit is contained in:
parent
f9cf1d943c
commit
64f50a179e
1 changed files with 1 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
use crate::Value;
|
||||
#[allow(unused_imports)]
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
Loading…
Reference in a new issue