Skip to content

Commit c217bdd

Browse files
committed
fix linting
1 parent e637733 commit c217bdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

litellm/proxy/pass_through_endpoints/pass_through_endpoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2005,9 +2005,9 @@ async def initialize_pass_through_endpoints(
20052005
)
20062006

20072007
# remove the ones that are not visited from the list
2008-
for endpoint in registered_pass_through_endpoints:
2009-
if endpoint not in visited_endpoints:
2010-
InitPassThroughEndpointHelpers.remove_endpoint_routes(endpoint)
2008+
for endpoint_key in registered_pass_through_endpoints:
2009+
if endpoint_key not in visited_endpoints:
2010+
InitPassThroughEndpointHelpers.remove_endpoint_routes(endpoint_key)
20112011

20122012

20132013
async def _get_pass_through_endpoints_from_db(

0 commit comments

Comments
 (0)