Sawyer
commited on
Commit
·
dc5c4e1
1
Parent(s):
a70ad43
fix: typo in user_app.py (#740)
Browse files### 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 +1 -1
api/apps/user_app.py
CHANGED
@@ -200,7 +200,7 @@ def rollback_user_registration(user_id):
|
|
200 |
except Exception as e:
|
201 |
pass
|
202 |
try:
|
203 |
-
TenantLLM.delete().where(TenantLLM.tenant_id == user_id).
|
204 |
except Exception as e:
|
205 |
pass
|
206 |
|
|
|
200 |
except Exception as e:
|
201 |
pass
|
202 |
try:
|
203 |
+
TenantLLM.delete().where(TenantLLM.tenant_id == user_id).execute()
|
204 |
except Exception as e:
|
205 |
pass
|
206 |
|