summaryrefslogtreecommitdiffstats
path: root/librepology/src/v1/api.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-04-06 11:32:42 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-04-06 11:34:25 +0200
commit774a9c331214fc6682c793eb5cf8d666f8774b57 (patch)
tree1bdf96b747c73b608fe2bd925458406931558df4 /librepology/src/v1/api.rs
parent4f65f82b5d5f288a66f99150ce58b793076da061 (diff)
Run cargo-fmt
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'librepology/src/v1/api.rs')
-rw-r--r--librepology/src/v1/api.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/librepology/src/v1/api.rs b/librepology/src/v1/api.rs
index 3d659df..1c8cd6e 100644
--- a/librepology/src/v1/api.rs
+++ b/librepology/src/v1/api.rs
@@ -1,6 +1,6 @@
use crate::v1::error::Result;
-use crate::v1::types::Problem;
use crate::v1::types::Package;
+use crate::v1::types::Problem;
/// The high-level functionality of the repology API is represented in this trait
///
@@ -17,5 +17,3 @@ pub trait Api {
fn problems_for_maintainer<M: AsRef<str>>(&self, maintainer: M) -> Result<Vec<Problem>>;
}
-
-