Skip to content

Commit bead96d

Browse files
author
Stephan Dilly
committed
workaround for rust nightly clippy bug
1 parent 7de5265 commit bead96d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/keys.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//TODO: remove once fixed https://github.com/rust-lang/rust-clippy/issues/6818
2+
#![allow(clippy::use_self)]
3+
14
use crate::get_app_config_path;
25
use anyhow::Result;
36
use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};

src/ui/style.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//TODO: remove once fixed https://github.com/rust-lang/rust-clippy/issues/6818
2+
#![allow(clippy::use_self)]
3+
14
use anyhow::Result;
25
use asyncgit::{DiffLineType, StatusItemType};
36
use ron::{

0 commit comments

Comments
 (0)