Merge pull request #315 from twe4ked/fix-warnings

Fix warnings
This commit is contained in:
Jonathan Turner 2019-08-20 04:43:50 +12:00 committed by GitHub
commit e5b410aded
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,3 @@
use crate::commands::command::EvaluatedCommandArgs;
use crate::parser::registry::EvaluatedArgs;
use crate::prelude::*; use crate::prelude::*;
use log::trace; use log::trace;
use serde::{de, forward_to_deserialize_any}; use serde::{de, forward_to_deserialize_any};

View File

@ -41,7 +41,7 @@ crate use crate::context::CommandRegistry;
crate use crate::context::{Context, SpanSource}; crate use crate::context::{Context, SpanSource};
crate use crate::env::host::handle_unexpected; crate use crate::env::host::handle_unexpected;
crate use crate::env::Host; crate use crate::env::Host;
crate use crate::errors::{ShellError, ShellErrorUtils}; crate use crate::errors::ShellError;
crate use crate::object::base as value; crate use crate::object::base as value;
crate use crate::object::meta::{Tag, Tagged, TaggedItem}; crate use crate::object::meta::{Tag, Tagged, TaggedItem};
crate use crate::object::types::ExtractType; crate use crate::object::types::ExtractType;