Skip to content

Commit

Permalink
Update proxy_server.py
Browse files Browse the repository at this point in the history
intialize -> initialize
  • Loading branch information
eltociear authored Mar 17, 2024
1 parent 6eac5c4 commit 0b56176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litellm/proxy/proxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1842,7 +1842,7 @@ async def load_config(
elif key == "success_callback":
litellm.success_callback = []

# intialize success callbacks
# initialize success callbacks
for callback in value:
# user passed custom_callbacks.async_on_succes_logger. They need us to import a function
if "." in callback:
Expand All @@ -1858,7 +1858,7 @@ async def load_config(
elif key == "failure_callback":
litellm.failure_callback = []

# intialize success callbacks
# initialize success callbacks
for callback in value:
# user passed custom_callbacks.async_on_succes_logger. They need us to import a function
if "." in callback:
Expand Down

0 comments on commit 0b56176

Please sign in to comment.