diff options
author | David Shrewsbury <shrewsbury.dave@gmail.com> | 2014-10-10 16:18:14 -0400 |
---|---|---|
committer | David Shrewsbury <shrewsbury.dave@gmail.com> | 2014-10-10 16:18:14 -0400 |
commit | f3ef289360041ef0088e9f2e19637f9bf6d856fd (patch) | |
tree | af869d0522e831df62ae0b6d0b62c4847a58d5f9 /ironic/drivers/utils.py | |
parent | bfec3234c3c2c9f8b95434a4a11e11eb6226d1df (diff) | |
download | ironic-f3ef289360041ef0088e9f2e19637f9bf6d856fd.tar.gz |
Enable H405 PEP8 check
Fixes files with the PEP8 error:
H405 multi line docstring summary not separated with an empty line
and enables the PEP8 check in tox.ini.
Change-Id: I632c89e2a1783be8305a8a8cea7ae9d3bb55b62c
Diffstat (limited to 'ironic/drivers/utils.py')
-rw-r--r-- | ironic/drivers/utils.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ironic/drivers/utils.py b/ironic/drivers/utils.py index 64fbfe06e..8f0b9c1b9 100644 --- a/ironic/drivers/utils.py +++ b/ironic/drivers/utils.py @@ -90,7 +90,9 @@ class MixinVendorInterface(base.VendorInterface): return route.vendor_passthru(task, **kwargs) def driver_vendor_passthru(self, context, method, **kwargs): - """Call driver_vendor_passthru on a mapped interface based on the + """Handle top-level vendor actions. + + Call driver_vendor_passthru on a mapped interface based on the specified method. Returns or raises according to the requested driver_vendor_passthru |