summaryrefslogtreecommitdiff
path: root/keystone/cmd/doctor/database.py
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2022-08-02 15:28:56 +0100
committerStephen Finucane <sfinucan@redhat.com>2022-10-26 15:14:21 +0300
commit6dfde5b48b388e32e34a385c3a9ef48da7c7c49b (patch)
tree3a246f60bcb69400c341218ce882e3c44fd68d93 /keystone/cmd/doctor/database.py
parent02db9263961bb1a630014536096bcfc72009dd65 (diff)
downloadkeystone-6dfde5b48b388e32e34a385c3a9ef48da7c7c49b.tar.gz
requirements: Bump linter requirements
The pep257 dependency does not support Python 3.10 and has been deprecated in favour of flake8-docstrings. While we're here, we bump the other linter dependencies and remove a note regarding the order of dependencies, which is no longer true with the new dependency resolver introduced in pip 20.3. We also remove an import exception for six.moves since we no longer use six. Change-Id: I4aae75f513568126230becf27b2e07d6682d35a1 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'keystone/cmd/doctor/database.py')
-rw-r--r--keystone/cmd/doctor/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/cmd/doctor/database.py b/keystone/cmd/doctor/database.py
index e0def5d63..95c5bdd87 100644
--- a/keystone/cmd/doctor/database.py
+++ b/keystone/cmd/doctor/database.py
@@ -23,7 +23,7 @@ def symptom_database_connection_is_not_SQLite():
migrations, making it unsuitable for use in keystone. Please change your
`keystone.conf [database] connection` value to point to a supported
database driver, such as MySQL.
- """
+ """ # noqa: D403
return (
CONF.database.connection is not None
and 'sqlite' in CONF.database.connection)