diff options
author | Cyborus04 <87248184+Cyborus04@users.noreply.github.com> | 2023-07-11 21:24:36 +0200 |
---|---|---|
committer | Cyborus04 <87248184+Cyborus04@users.noreply.github.com> | 2023-07-11 21:24:36 +0200 |
commit | 2c30803476486d8a3493d8966d0ef535a2a29ff3 (patch) | |
tree | 9b76d705dc8f40924ddeba7eb6b846a751a99e5a | |
parent | better api error (diff) | |
download | forgejo-cli-2c30803476486d8a3493d8966d0ef535a2a29ff3.tar.xz forgejo-cli-2c30803476486d8a3493d8966d0ef535a2a29ff3.zip |
remove unnecessary `mut`
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 1ce9604..d6ff42c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -87,7 +87,7 @@ async fn main() -> eyre::Result<()> { description, private, - mut set_upstream, + set_upstream, push, } => { // let (host_domain, host_keys, repo) = keys.get_current_host_and_repo().await?; |