From b64306d633580f433149907fad465e1b29b0faf7 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 26 Sep 2023 18:10:59 -0700 Subject: [PATCH] fix linting issue --- litellm/utils.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/utils.py b/litellm/utils.py index f377954a4..045b8931d 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -1327,7 +1327,7 @@ def load_test_model( def validate_environment(model: Optional[str]=None) -> dict: keys_in_environment = False - missing_keys = [] + missing_keys: List[str] = [] if model is None: return {"keys_in_environment": keys_in_environment, "missing_keys": missing_keys} diff --git a/pyproject.toml b/pyproject.toml index aac731c19..4ce8e6d2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.773" +version = "0.1.774" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"