Unmerge ugly use statements

This commit is contained in:
Marcin Kulik
2025-05-11 20:27:37 +02:00
parent 71fc63d164
commit 76ac4be5d7

View File

@@ -3,15 +3,10 @@ use std::io;
use std::os::fd::{AsFd, AsRawFd, BorrowedFd, OwnedFd}; use std::os::fd::{AsFd, AsRawFd, BorrowedFd, OwnedFd};
use anyhow::Result; use anyhow::Result;
use nix::{ use nix::errno::Errno;
errno::Errno, use nix::sys::select::{select, FdSet};
libc, pty, use nix::sys::time::TimeVal;
sys::{ use nix::{libc, pty, unistd};
select::{select, FdSet},
time::TimeVal,
},
unistd,
};
use rgb::RGB8; use rgb::RGB8;
use termion::raw::{IntoRawMode, RawTerminal}; use termion::raw::{IntoRawMode, RawTerminal};