From 93ee418f654b9480bb1c5b96c1daae85ddfc2f37 Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Wed, 11 May 2022 15:39:33 -0600 Subject: [PATCH] redundant imports --- backend/src/install/cleanup.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/backend/src/install/cleanup.rs b/backend/src/install/cleanup.rs index f5a0d5da2..04f491937 100644 --- a/backend/src/install/cleanup.rs +++ b/backend/src/install/cleanup.rs @@ -9,15 +9,14 @@ use super::{PKG_ARCHIVE_DIR, PKG_DOCKER_DIR}; use crate::config::{not_found, ConfigReceipts}; use crate::context::RpcContext; use crate::db::model::{ - AllPackageData, CurrentDependencyInfo, CurrentDependencyInfo, InstalledPackageDataEntry, - InstalledPackageDataEntry, PackageDataEntry, PackageDataEntry, + AllPackageData, CurrentDependencyInfo, InstalledPackageDataEntry, PackageDataEntry, }; use crate::dependencies::{ reconfigure_dependents_with_live_pointers, DependencyErrors, TryHealReceipts, }; use crate::error::ErrorCollection; -use crate::s9pk::manifest::{Manifest, PackageId, PackageId}; -use crate::util::{Apply, Version, Version}; +use crate::s9pk::manifest::{Manifest, PackageId}; +use crate::util::{Apply, Version}; use crate::volume::PKG_VOLUME_DIR; use crate::Error;