Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kristjanvalur committed Apr 27, 2023
1 parent d279e52 commit 214695c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_asyncio/test_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ async def test_host_port_remap(self, create_redis, redis_addr):

def host_port_remap(host, port):
# remap first three nodes to our local proxy
old = host, port
# old = host, port
if int(port) in ports:
host, port = "127.0.0.1", int(port) + offset
# print(f"{old} {host, port}")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ def test_host_port_remap(self, request, redis_addr):

def host_port_remap(host, port):
# remap first three nodes to our local proxy
old = host, port
# old = host, port
if int(port) in ports:
host, port = "127.0.0.1", int(port) + offset
# print(f"{old} {host, port}")
Expand Down

0 comments on commit 214695c

Please sign in to comment.