Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Oct 17, 2023
1 parent 3a20637 commit cbec2f5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use crate::Opt;
use byte_unit::Byte;
use clap::ValueEnum;
use std::borrow::Cow;
use std::cell::RefCell;
use std::io::{self, IsTerminal};
use std::time::Duration;
use std::time::Instant;
Expand Down Expand Up @@ -351,5 +350,5 @@ pub fn get_theme(opt: &Opt, config: &Config) -> ConfigTheme {

#[cfg(not(target_os = "windows"))]
thread_local! {
pub static USERS_CACHE: RefCell<UsersCache> = UsersCache::new().into();
pub static USERS_CACHE: std::cell::RefCell<UsersCache> = UsersCache::new().into();
}

0 comments on commit cbec2f5

Please sign in to comment.