From 072855daefdf54ef4fda40cbe91837403397b320 Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 7 Apr 2025 22:55:09 +0200 Subject: [PATCH] fix: syntax --- deltachat-rpc-client/src/deltachat_rpc_client/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py b/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py index 7b62ba965..3bd178f18 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/_utils.py @@ -91,7 +91,7 @@ def _run_cli( nargs="?", ) parser.add_argument("--email", action="store", help="email address", default=os.getenv("DELTACHAT_EMAIL")) - parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD"))) + parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD")) args = parser.parse_args(argv[1:]) with Rpc(accounts_dir=args.accounts_dir, **kwargs) as rpc: