forked from phoenix/litellm-mirror
fix(aws_secret_manager.py): fix typing error
This commit is contained in:
parent
849f7ca590
commit
9556bfda81
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ Requires:
|
||||||
import ast
|
import ast
|
||||||
import base64
|
import base64
|
||||||
import os
|
import os
|
||||||
from typing import Any, Optional
|
from typing import Any, Dict, Optional
|
||||||
|
|
||||||
import litellm
|
import litellm
|
||||||
from litellm.proxy._types import KeyManagementSystem
|
from litellm.proxy._types import KeyManagementSystem
|
||||||
|
@ -139,7 +139,7 @@ class AWSKeyManagementService_V2:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
def decrypt_env_var() -> dict[str, Any]:
|
def decrypt_env_var() -> Dict[str, Any]:
|
||||||
# setup client class
|
# setup client class
|
||||||
aws_kms = AWSKeyManagementService_V2()
|
aws_kms = AWSKeyManagementService_V2()
|
||||||
# iterate through env - for `aws_kms/`
|
# iterate through env - for `aws_kms/`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue