Skip to content

Commit

Permalink
fix: typo in user_app.py (infiniflow#740)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
shaoyie committed May 13, 2024
1 parent 8769619 commit 69b7c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/apps/user_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 69b7c61

Please sign in to comment.