upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/lib/git_events.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-09-11 12:52:46 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2024-09-11 13:05:57 +0100
commitdf1660b1b78b5881c64c6fadd4ae12c8c01c6684 (patch)
tree044bcfc85d3cffe3ede73e1285cacaf30aaa981d /src/lib/git_events.rs
parentdb17699af4b0ec839b8340766aab91bacf974cd4 (diff)
refactor: fix fmt and clippy issues
which potentially were only identified when a dependancy was updated
Diffstat (limited to 'src/lib/git_events.rs')
-rw-r--r--src/lib/git_events.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/git_events.rs b/src/lib/git_events.rs
index 2e9f797..b4ac676 100644
--- a/src/lib/git_events.rs
+++ b/src/lib/git_events.rs
@@ -249,7 +249,7 @@ pub fn event_tag_from_nip19_or_hex(
249 loop { 249 loop {
250 if bech32.is_empty() { 250 if bech32.is_empty() {
251 bech32 = Interactor::default().input( 251 bech32 = Interactor::default().input(
252 PromptInputParms::default().with_prompt(&format!("{reference_name} reference")), 252 PromptInputParms::default().with_prompt(format!("{reference_name} reference")),
253 )?; 253 )?;
254 } 254 }
255 if let Ok(nip19) = Nip19::from_bech32(bech32.clone()) { 255 if let Ok(nip19) = Nip19::from_bech32(bech32.clone()) {