From ee931b4f8c5f69a7e1ddfb20becb55f21830d8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Tue, 30 Jun 2020 17:36:19 +0200 Subject: [PATCH] savestate example: rustfmt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- savestate/examples/savestate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/savestate/examples/savestate.rs b/savestate/examples/savestate.rs index b908696..a319f08 100644 --- a/savestate/examples/savestate.rs +++ b/savestate/examples/savestate.rs @@ -13,9 +13,9 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . -use std::fs; -use std::convert::TryFrom; use savestate::SaveState; +use std::convert::TryFrom; +use std::fs; use std::path::PathBuf; use structopt::StructOpt;