Done with the requested changes

This commit is contained in:
XxAlonexX 2025-03-11 23:31:47 +05:30
parent cdcf8ce9f6
commit 5e55ee2402
2 changed files with 5 additions and 2 deletions

View file

@ -9,7 +9,7 @@ class OpenAILikeError(Exception):
self.message = message
self.request = request
self.response = response
super().__init__(self.message) # Call the base class constructor with the parameters it needs
super().__init__(message) # Call the base class constructor with the parameters it needs
class OpenAILikeBase: