Skip to content

Commit 6589c92

Browse files
fix: add linting
1 parent 34366d8 commit 6589c92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

litellm/proxy/management_endpoints/key_management_endpoints.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -645,8 +645,8 @@ def check_team_key_model_specific_limits(
645645
if data.model_rpm_limit is None and data.model_tpm_limit is None:
646646
return
647647
# get total model specific tpm/rpm limit
648-
model_specific_rpm_limit = {}
649-
model_specific_tpm_limit = {}
648+
model_specific_rpm_limit: Dict[str, int] = {}
649+
model_specific_tpm_limit: Dict[str, int] = {}
650650

651651
for key in keys:
652652
if key.metadata.get("model_rpm_limit", None) is not None:

0 commit comments

Comments
 (0)