fix linting issue

This commit is contained in:
Krrish Dholakia 2023-09-26 18:10:59 -07:00
parent 076affbff2
commit b64306d633
2 changed files with 2 additions and 2 deletions

View file

@ -1327,7 +1327,7 @@ def load_test_model(
def validate_environment(model: Optional[str]=None) -> dict: def validate_environment(model: Optional[str]=None) -> dict:
keys_in_environment = False keys_in_environment = False
missing_keys = [] missing_keys: List[str] = []
if model is None: if model is None:
return {"keys_in_environment": keys_in_environment, "missing_keys": missing_keys} return {"keys_in_environment": keys_in_environment, "missing_keys": missing_keys}

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "litellm" name = "litellm"
version = "0.1.773" version = "0.1.774"
description = "Library to easily interface with LLM API providers" description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"] authors = ["BerriAI"]
license = "MIT License" license = "MIT License"