fix clippy

This commit is contained in:
WindSoilder 2022-09-03 16:30:58 +08:00
parent 4369af6d05
commit 8819a78b05

View File

@ -19,9 +19,9 @@ use crate::{
lex, lite_parse, lex, lite_parse,
lite_parse::LiteCommand, lite_parse::LiteCommand,
parser::{ parser::{
check_call, check_name, garbage, garbage_pipeline, parse, parse_block_expression, check_call, check_name, garbage, garbage_pipeline, parse, parse_internal_call,
parse_internal_call, parse_multispan_value, parse_signature, parse_string, parse_multispan_value, parse_signature, parse_string, parse_var_with_opt_type, trim_quotes,
parse_var_with_opt_type, trim_quotes, ParsedInternalCall, ParsedInternalCall,
}, },
unescape_unquote_string, ParseError, unescape_unquote_string, ParseError,
}; };