mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
workaround for rust nightly clippy bug
This commit is contained in:
parent
7de5265d5d
commit
bead96db08
2 changed files with 6 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
|||
//TODO: remove once fixed https://github.com/rust-lang/rust-clippy/issues/6818
|
||||
#![allow(clippy::use_self)]
|
||||
|
||||
use crate::get_app_config_path;
|
||||
use anyhow::Result;
|
||||
use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
//TODO: remove once fixed https://github.com/rust-lang/rust-clippy/issues/6818
|
||||
#![allow(clippy::use_self)]
|
||||
|
||||
use anyhow::Result;
|
||||
use asyncgit::{DiffLineType, StatusItemType};
|
||||
use ron::{
|
||||
|
|
|
|||
Loading…
Reference in a new issue