From 057297b4a339a4f72a6adf4ab587ebde2c331fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C3=B6lfchen?= Date: Sun, 25 Aug 2024 17:44:34 +0000 Subject: [PATCH] fix: remove unused import (#1168) --- crates/eww/src/config/system_stats.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eww/src/config/system_stats.rs b/crates/eww/src/config/system_stats.rs index 36d9e8e..787b3de 100644 --- a/crates/eww/src/config/system_stats.rs +++ b/crates/eww/src/config/system_stats.rs @@ -1,4 +1,4 @@ -use crate::{regex, util::IterAverage}; +use crate::util::IterAverage; use anyhow::{Context, Result}; use once_cell::sync::Lazy; use std::{fs::read_to_string, sync::Mutex};