mirror of
https://github.com/nushell/nushell
synced 2024-11-10 23:24:14 +00:00
Fmt
This commit is contained in:
parent
f57f7b2def
commit
3f8f3ecf9a
2 changed files with 2 additions and 3 deletions
|
@ -14,8 +14,7 @@ impl Command for Use {
|
|||
}
|
||||
|
||||
fn signature(&self) -> nu_protocol::Signature {
|
||||
Signature::build("use")
|
||||
.required("module_name", SyntaxShape::String, "module name")
|
||||
Signature::build("use").required("module_name", SyntaxShape::String, "module name")
|
||||
}
|
||||
|
||||
fn run(
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use std::ops::{Index, IndexMut};
|
||||
|
||||
use crate::{Signature, DeclId};
|
||||
use crate::{DeclId, Signature};
|
||||
|
||||
use super::Statement;
|
||||
|
||||
|
|
Loading…
Reference in a new issue