Skip to content

Commit 8af9a3f

Browse files
authored
Fixing lint merge issue (#1770)
1 parent d4a9825 commit 8af9a3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_connection_pool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ class MyConnection(redis.UnixDomainSocketConnection):
450450
pass
451451

452452
pool = redis.ConnectionPool.from_url(
453-
'unix:///socket', connection_class=MyConnection
453+
"unix:///socket", connection_class=MyConnection
454454
)
455455
assert pool.connection_class == MyConnection
456456

@@ -469,7 +469,7 @@ class MyConnection(redis.SSLConnection):
469469
pass
470470

471471
pool = redis.ConnectionPool.from_url(
472-
'rediss://my.host', connection_class=MyConnection
472+
"rediss://my.host", connection_class=MyConnection
473473
)
474474
assert pool.connection_class == MyConnection
475475

0 commit comments

Comments
 (0)