Browse Source

minor cleanup

David Peter 2 years ago
parent
commit
630093e52c
1 changed files with 1 additions and 2 deletions
  1. 1 2
      numbat-cli/src/main.rs

+ 1 - 2
numbat-cli/src/main.rs

@@ -3,6 +3,7 @@ mod completer;
 mod highlighter;
 mod keywords;
 
+use ansi_formatter::ansi_format;
 use completer::NumbatCompleter;
 use highlighter::NumbatHighlighter;
 
@@ -28,8 +29,6 @@ use std::path::PathBuf;
 use std::sync::{Arc, Mutex};
 use std::{fs, thread};
 
-use crate::ansi_formatter::ansi_format;
-
 type ControlFlow = std::ops::ControlFlow<numbat::ExitStatus>;
 
 const PROMPT: &str = ">>> ";