summaryrefslogtreecommitdiff
path: root/src/progress_bar.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/progress_bar.rs')
-rw-r--r--src/progress_bar.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/progress_bar.rs b/src/progress_bar.rs
index 4a54170..7f07ad5 100644
--- a/src/progress_bar.rs
+++ b/src/progress_bar.rs
@@ -14,7 +14,7 @@ const PROGRESS_EXCEEDS_MAX_ERR: &str =
/// Terminal progress bar to be used when not using Ratataui.
pub fn progress_bar(progress: u16, total: u16, line_width: u16) -> Result<String> {
- use crossterm::style::Stylize;
+ use ratatui::crossterm::style::Stylize;
if progress > total {
bail!(PROGRESS_EXCEEDS_MAX_ERR);