From 93ab4e7842ac3c3a37e8d423ae57ef3e7d151b7b Mon Sep 17 00:00:00 2001 From: Jakub Panek Date: Thu, 28 Apr 2022 17:53:59 +0000 Subject: ignore JetBrains IDEs, tidy-up imports (#348) * ignore JB IDEs * tidy-up imports * add rustfmt config --- src/command/client/event.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/command/client/event.rs') diff --git a/src/command/client/event.rs b/src/command/client/event.rs index f09752d6..189d9e73 100644 --- a/src/command/client/event.rs +++ b/src/command/client/event.rs @@ -1,9 +1,7 @@ -use std::thread; -use std::time::Duration; +use std::{thread, time::Duration}; use crossbeam_channel::unbounded; -use termion::event::Key; -use termion::input::TermRead; +use termion::{event::Key, input::TermRead}; pub enum Event { Input(I), -- cgit v1.3.1