fix formatting

This commit is contained in:
Chance 2024-12-06 16:55:49 -05:00 committed by lily
parent ae2d2ed858
commit b1a6ad4f08
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
3 changed files with 19 additions and 23 deletions

View file

@ -3,8 +3,6 @@ use std::{
sync::Arc,
};
use chrono::Local;
use colored::Colorize;
use log::debug;
@ -111,7 +109,7 @@ fn register_commands() {
"exec",
Some("Executes a .nyx file."),
Callable::WithArgs(commands::exec),
Some(1),
Some(1),
);
// Example of adding aliases for commands
@ -172,7 +170,7 @@ pub fn evaluate_command(input: &str) -> anyhow::Result<()> {
cmd_name.to_string(),
if args.is_empty() { None } else { Some(args) },
)?;
};
}
Ok(())
}