mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-21 20:30:43 +00:00
add flake8-pep3101
This commit is contained in:
parent
42d7d57e9b
commit
d60d539631
@ -6,7 +6,7 @@ class DoctorError(Exception):
|
||||
"""Generic exception class for ansible-doctor."""
|
||||
|
||||
def __init__(self, msg, original_exception=""):
|
||||
super(DoctorError, self).__init__(msg + ("\n%s" % original_exception))
|
||||
super(DoctorError, self).__init__("{msg}\n{org}".format(msg=msg, org=original_exception))
|
||||
self.original_exception = original_exception
|
||||
|
||||
|
||||
|
@ -8,6 +8,7 @@ flake8-isort
|
||||
flake8-logging-format
|
||||
flake8-polyfill
|
||||
flake8-quotes
|
||||
flake8-pep3101
|
||||
flake8-eradicate; python_version >= "3.6"
|
||||
pep8-naming
|
||||
wheel
|
||||
|
Loading…
Reference in New Issue
Block a user