Skip to content

Commit

Permalink
feat: ✨ Fix escape_quote_string import path
Browse files Browse the repository at this point in the history
  • Loading branch information
ddanier committed Nov 13, 2024
1 parent 5fa65f2 commit 563be1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ use crate::commands::Nur;
use crate::errors::{NurError, NurResult};
use crate::names::NUR_NAME;
use nu_engine::{get_full_help, CallExt};
use nu_parser::escape_for_script_arg;
use nu_parser::parse;
use nu_parser::{escape_for_script_arg, escape_quote_string};
use nu_protocol::ast::Expression;
use nu_protocol::{
ast::Expr,
engine::{EngineState, Stack, StateWorkingSet},
ShellError,
};
use nu_protocol::{report_parse_error, Spanned};
use nu_utils::escape_quote_string;
use nu_utils::stdout_write_all_and_flush;

pub(crate) fn is_safe_taskname(name: &str) -> bool {
Expand Down

0 comments on commit 563be1b

Please sign in to comment.