refactor(router.py): linting fixes

This commit is contained in:
Krrish Dholakia 2023-12-05 13:33:44 -08:00
parent 63939c0a11
commit d606a9cb4c

View file

@ -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