New record, five ignores to allow a try/except/pass.
# noinspection PyBroadException
try:
self.connection.close()
# pylint: disable=bare-except, broad-except
except Exception: # noqa # nosec
pass
Post
December 18, 2020
December 18, 2020
New record, five ignores to allow a try/except/pass.
# noinspection PyBroadException
try:
self.connection.close()
# pylint: disable=bare-except, broad-except
except Exception: # noqa # nosec
pass