Replace clear method with delete method in ChatService

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-02-18 18:03:34 -03:00
commit 2b51674144

View file

@ -251,7 +251,7 @@ class ChatService(Service):
"""
Clear the cache for a client.
"""
self.cache_service.clear(client_id)
self.cache_service.delete(client_id)
def dict_to_markdown_table(my_dict):