diff --git a/src/tools/window.rs b/src/tools/window.rs
index 556a830..9ac8848 100644
--- a/src/tools/window.rs
+++ b/src/tools/window.rs
@@ -19,7 +19,7 @@ use objc::{msg_send, sel, sel_impl};
#[cfg(target_os = "windows")]
use windows::Win32::Foundation::{HWND, RECT};
#[cfg(target_os = "windows")]
-use windows::Win32::UI::WindowsAndMessaging::{GetWindowRect, GetWindowText, GetWindowTextLengthW};
+use windows::Win32::UI::WindowsAndMessaging::{GetWindowRect, GetWindowTextW, GetWindowTextLengthW};
#[cfg(target_os = "linux")]
use x11::xlib;
diff --git a/src/utils/platform.rs b/src/utils/platform.rs
index a2b1d78..1ddb34d 100644
--- a/src/utils/platform.rs
+++ b/src/utils/platform.rs
@@ -13,7 +13,7 @@ struct EnumData {
#[cfg(target_os = "windows")]
pub fn get_window_by_pid(pid: u32) -> Result