Skip to content

Commit ac7fafd

Browse files
committed
clean
1 parent 770cf18 commit ac7fafd

File tree

1 file changed

+1
-1
lines changed
  • packages/service-library/src/servicelib/redis

1 file changed

+1
-1
lines changed

packages/service-library/src/servicelib/redis/_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __post_init__(self) -> None:
6565
async def setup(self) -> None:
6666
if not await self.ping():
6767
await self.shutdown()
68-
url_safe: URL = URL(self.redis_dsn).with_password("???")
68+
url_safe = URL(self.redis_dsn).with_password("???")
6969
raise CouldNotConnectToRedisError(dsn=f"{url_safe}")
7070

7171
self._health_check_task = asyncio.create_task(

0 commit comments

Comments
 (0)