test: fix linting issues

This commit is contained in:
Krrish Dholakia 2023-11-09 16:50:43 -08:00
parent e12bff6d7f
commit b9e6989e41
4 changed files with 7 additions and 8 deletions

View file

@ -199,7 +199,7 @@ def save_params_to_config(data: dict):
def load_router_config(router: Optional[litellm.Router], config_file_path: str):
config = {}
server_settings = {}
server_settings: dict = {}
try:
if os.path.exists(config_file_path):
with open(config_file_path, 'r') as file: