diff options
author | David Gilman <dgilman@aidentified.com> | 2022-12-14 04:18:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 11:18:41 +0200 |
commit | 3fb65de645bf4dd1beb8e893bdaa2c4766bbd1fa (patch) | |
tree | d5074882a70d502c91122f252788f27f1670901e /tests/conftest.py | |
parent | 6487f9555ba2d08083a081df9b65b642427361fa (diff) | |
download | redis-py-3fb65de645bf4dd1beb8e893bdaa2c4766bbd1fa.tar.gz |
Combine auto-concatenated strings (#2482)
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 3d40375..27dcc74 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -77,7 +77,7 @@ def pytest_addoption(parser): "--redis-url", default=default_redis_url, action="store", - help="Redis connection string," " defaults to `%(default)s`", + help="Redis connection string, defaults to `%(default)s`", ) parser.addoption( @@ -93,7 +93,7 @@ def pytest_addoption(parser): "--redis-ssl-url", default=default_redis_ssl_url, action="store", - help="Redis SSL connection string," " defaults to `%(default)s`", + help="Redis SSL connection string, defaults to `%(default)s`", ) parser.addoption( |