From 3e73462e041b55e134f9f719a9583b1aa92eef21 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Tue, 25 Oct 2022 22:06:51 -0400 Subject: [PATCH] Optimize imports --- src/autofix/fixer.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/autofix/fixer.rs b/src/autofix/fixer.rs index 6361316a57..f0392faa36 100644 --- a/src/autofix/fixer.rs +++ b/src/autofix/fixer.rs @@ -1,9 +1,10 @@ -use crate::autofix::Fix; -use crate::autofix::Patch; -use itertools::Itertools; -use rustpython_parser::ast::Location; use std::collections::BTreeSet; +use itertools::Itertools; +use rustpython_parser::ast::Location; + +use crate::autofix::Fix; +use crate::autofix::Patch; use crate::checks::Check; #[derive(Hash)]