Skip to content

Commit

Permalink
fix issue in crud
Browse files Browse the repository at this point in the history
  • Loading branch information
djeck1432 committed Oct 29, 2024
1 parent a421b8d commit 6c9fdf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_app/db/crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,4 +502,4 @@ def delete_telegram_user(self, telegram_id: str) -> None:
"""
user = self.get_user_by_telegram_id(telegram_id)
if user:
self.delete_from_db(user)
self.delete_object(user, user.id)

0 comments on commit 6c9fdf8

Please sign in to comment.