mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
fix linting issue
This commit is contained in:
parent
076affbff2
commit
b64306d633
2 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue