mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-12 23:01:41 +00:00
fix linting
This commit is contained in:
parent
e637733e36
commit
c217bddb59
1 changed files with 3 additions and 3 deletions
|
|
@ -2005,9 +2005,9 @@ async def initialize_pass_through_endpoints(
|
|||
)
|
||||
|
||||
# remove the ones that are not visited from the list
|
||||
for endpoint in registered_pass_through_endpoints:
|
||||
if endpoint not in visited_endpoints:
|
||||
InitPassThroughEndpointHelpers.remove_endpoint_routes(endpoint)
|
||||
for endpoint_key in registered_pass_through_endpoints:
|
||||
if endpoint_key not in visited_endpoints:
|
||||
InitPassThroughEndpointHelpers.remove_endpoint_routes(endpoint_key)
|
||||
|
||||
|
||||
async def _get_pass_through_endpoints_from_db(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue