fix: fix linting errors

This commit is contained in:
Krrish Dholakia 2023-11-22 19:59:25 -08:00
parent 5d5ca9f7ef
commit 2f93c0155a
2 changed files with 4 additions and 4 deletions

View file

@ -18,6 +18,6 @@ try:
# print("Got openai Timeout Exception. Good job. The proxy mapped to OpenAI exceptions")
except Exception as e:
print("\n the proxy did not map to OpenAI exception. Instead got", e)
print(e.type)
print(e.message)
print(e.code)
print(e.type) # type: ignore
print(e.message) # type: ignore
print(e.code) # type: ignore