From b9489077486c715134d8176a54bea1530a0c8952 Mon Sep 17 00:00:00 2001 From: Sarina Date: Tue, 23 Jul 2024 00:25:57 +0330 Subject: [PATCH] Fix chatgpt thing --- core/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cli.py b/core/cli.py index ba23176..55ea25c 100644 --- a/core/cli.py +++ b/core/cli.py @@ -160,7 +160,7 @@ def edit_user(username: str, new_username: str, new_traffic_limit: float, new_ex # Prepare arguments for the command command_args = [ 'bash', - 'edit_user.sh', # Replace with the actual path to your script + Command.EDIT_USER.value, username, new_username or '', str(new_traffic_limit) if new_traffic_limit is not None else '',