Extending flake8 test max line length

This commit is contained in:
justin-h-loi 2023-08-08 15:13:43 -04:00 committed by arp102
parent a10215191a
commit bfa3c01893
2 changed files with 4 additions and 1 deletions

View File

@ -127,7 +127,9 @@ class KmipSession(threading.Thread):
)
try:
if hasattr(self._connection, 'shared_ciphers') and self._connection.shared_ciphers() is not None:
if hasattr(self._connection, 'shared_ciphers') \
and self._connection.shared_ciphers() is not None:
shared_ciphers = self._connection.shared_ciphers()
self._logger.debug(
"Possible session ciphers: {0}".format(len(shared_ciphers))

View File

@ -48,3 +48,4 @@ commands =
[flake8]
exclude = .git,.tox,dist,rpmbuild,*.egg-info
max-line-length = 88