From 3689d652ef3813f05b892078f226de0afd21e405 Mon Sep 17 00:00:00 2001 From: Kyle Sutherland-Cash Date: Sun, 9 May 2021 01:52:21 -0700 Subject: [PATCH] And format... --- src/common/errors.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/errors.rs b/src/common/errors.rs index 311e8d8e..148a3a9e 100644 --- a/src/common/errors.rs +++ b/src/common/errors.rs @@ -5,11 +5,11 @@ use serde::{Deserialize, Serialize}; use std::fmt::{Display, Error, Formatter}; -use crate::server::ServerInstruction; -use crate::common::thread_bus::{ASYNCOPENCALLS, OPENCALLS}; use crate::client::ClientInstruction; +use crate::common::thread_bus::{ASYNCOPENCALLS, OPENCALLS}; use crate::pty::PtyInstruction; use crate::screen::ScreenInstruction; +use crate::server::ServerInstruction; /// The maximum amount of calls an [`ErrorContext`] will keep track /// of in its stack representation. This is a per-thread maximum.