summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2024-02-05 13:26:19 +0200
committerLars Wirzenius <liw@liw.fi>2024-02-05 13:26:19 +0200
commit0e80ed89e26ef47b0aa08a799f36f12648beea28 (patch)
tree822f802fd2fed364c82e5fcf311c26a2fc62c5f7
parentb483ab914de22741d250785f5401184e0021a1f2 (diff)
downloadradicle-ci-broker-0e80ed89e26ef47b0aa08a799f36f12648beea28.tar.gz
fix: import RepoId from identity module
rust-analyzer gets confused for me when it's imported from prelude. Signed-off-by: Lars Wirzenius <liw@liw.fi>
-rw-r--r--src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.rs b/src/error.rs
index c70bc1d..74c303d 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -6,7 +6,7 @@
use std::path::PathBuf;
-use radicle::prelude::RepoId;
+use radicle::identity::RepoId;
use crate::{
adapter::AdapterError,