Merge "Enable super-on-old-class pylint check"

This commit is contained in:
Jenkins 2015-02-19 08:27:05 +00:00 committed by Gerrit Code Review
commit e8bfefae3d
3 changed files with 6 additions and 1 deletions

View File

@ -25,7 +25,6 @@ disable=
no-method-argument,
no-self-argument,
no-value-for-parameter,
super-on-old-class,
# "W" Warnings for stylistic problems or minor programming issues
abstract-method,
arguments-differ,

View File

@ -36,6 +36,9 @@ midonet_opts = [
cfg.CONF.register_opts(midonet_opts, "MIDONET")
# Derives from `object` (via at least NeutronDbPluginV2), but pylint
# can't see that without having the midonet libraries available.
# pylint: disable=super-on-old-class
class MidonetPluginV2(plugin.MidonetMixin):
vendor_extensions = plugin.MidonetMixin.supported_extension_aliases

View File

@ -123,6 +123,9 @@ class Bridge(flows.OFAgentIntegrationBridge, ovs_lib.OVSBridge):
self.get_datapath(retry_max)
# RyuApp derives from `object`, but pylint can't see that without
# having the ryu libraries available.
# pylint: disable=super-on-old-class
class OFANeutronAgentRyuApp(app_manager.RyuApp):
OFP_VERSIONS = [ryu_ofp13.OFP_VERSION]