Skip to content

Commit

Permalink
Fix for clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
akiomik committed Dec 31, 2023
1 parent 845e634 commit d1de2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/scrollable_list.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use ratatui::{prelude::*, widgets, widgets::*};

pub trait ScrollableList<T> {
fn select(&mut self, index: Option<usize>) -> ();
fn select(&mut self, index: Option<usize>);

fn selected(&self) -> Option<usize>;

Expand Down

0 comments on commit d1de2e7

Please sign in to comment.