From eb70b24c1793692c4f5c856a86daf0c892188b04 Mon Sep 17 00:00:00 2001 From: Sawyer <35255629+shaoyie@users.noreply.github.com> Date: Mon, 13 May 2024 09:25:45 +0800 Subject: [PATCH] fix: typo in user_app.py (#740) ### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ ### Type of change - [x] Bug Fix (non-breaking change - [x] Other (please describe): Fix typo --- api/apps/user_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/apps/user_app.py b/api/apps/user_app.py index aff6fddc1c..b6c5894e39 100644 --- a/api/apps/user_app.py +++ b/api/apps/user_app.py @@ -200,7 +200,7 @@ def rollback_user_registration(user_id): except Exception as e: pass try: - TenantLLM.delete().where(TenantLLM.tenant_id == user_id).excute() + TenantLLM.delete().where(TenantLLM.tenant_id == user_id).execute() except Exception as e: pass