diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-11 12:52:46 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-11 13:05:57 +0100 |
| commit | df1660b1b78b5881c64c6fadd4ae12c8c01c6684 (patch) | |
| tree | 044bcfc85d3cffe3ede73e1285cacaf30aaa981d /src/lib/git_events.rs | |
| parent | db17699af4b0ec839b8340766aab91bacf974cd4 (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.rs | 2 |
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()) { |