Skip to content

Commit

Permalink
feat(clippy) make clippy less pedantic
Browse files Browse the repository at this point in the history
  • Loading branch information
josueBarretogit committed Aug 22, 2024
1 parent 2479f8f commit f3bea80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![forbid(unsafe_code)]
#![allow(dead_code)]
#![allow(deprecated)]
use std::time::Duration;

use clap::Parser;
Expand Down
2 changes: 1 addition & 1 deletion src/view/widgets/feed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use ratatui::buffer::Buffer;
use ratatui::layout::{Constraint, Layout, Margin, Rect};
use ratatui::style::{Color, Style, Stylize};
use ratatui::text::Line;
use ratatui::widgets::{Block, Borders, List, ListItem, Paragraph, StatefulWidget, StatefulWidgetRef, Widget, Wrap};
use ratatui::widgets::{Block, Borders, List, ListItem, Paragraph, StatefulWidget, Widget, Wrap};
use tui_widget_list::PreRender;

use crate::backend::filter::Languages;
Expand Down

0 comments on commit f3bea80

Please sign in to comment.