From d606a9cb4c23575aef529cbc4df454a0e7d954a8 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 5 Dec 2023 13:33:44 -0800 Subject: [PATCH] refactor(router.py): linting fixes --- litellm/router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/router.py b/litellm/router.py index f4b825eb28c..be6cbd917b5 100644 --- a/litellm/router.py +++ b/litellm/router.py @@ -124,7 +124,7 @@ class Router: cache_config['host'] = redis_host if redis_port is not None: - cache_config['port'] = int(redis_port) + cache_config['port'] = str(redis_port) # type: ignore if redis_password is not None: cache_config['password'] = redis_password