From c641445f05d107c6317c99123046cef6b47f22c7 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 18 Jul 2023 04:30:27 -0400 Subject: clippy --- src/bin/rbw/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin') diff --git a/src/bin/rbw/commands.rs b/src/bin/rbw/commands.rs index 2e1b483..9bf02b0 100644 --- a/src/bin/rbw/commands.rs +++ b/src/bin/rbw/commands.rs @@ -679,7 +679,7 @@ pub fn config_set(key: &str, value: &str) -> anyhow::Result<()> { "base_url" => config.base_url = Some(value.to_string()), "identity_url" => config.identity_url = Some(value.to_string()), "notifications_url" => { - config.notifications_url = Some(value.to_string()) + config.notifications_url = Some(value.to_string()); } "client_cert_path" => { config.client_cert_path = -- cgit v1.2.3-54-g00ecf