Skip to content

Commit

Permalink
Fixed CI
Browse files Browse the repository at this point in the history
missing use Prompt
  • Loading branch information
adaschma committed Jun 23, 2024
1 parent 47aa9f3 commit 89192ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/painting/painter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use {
std::ops::RangeInclusive,
};
#[cfg(feature = "external_printer")]
use {crate::LineBuffer, crossterm::cursor::MoveUp};
use {crate::LineBuffer, crate::Prompt, crossterm::cursor::MoveUp};

// Returns a string that skips N number of lines with the next offset of lines
// An offset of 0 would return only one line after skipping the required lines
Expand Down

0 comments on commit 89192ec

Please sign in to comment.