diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-22 16:37:15 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-03-22 16:37:17 +0100 |
commit | 7a509a4d725eb9f9786d9abc59a90fe8e31e4c1f (patch) | |
tree | 90a1d4f090aba190ff95841b97df775b53712e8a /python/vyos/ifconfig/macvlan.py | |
parent | f90abbe3062a1d687c797ff2f2ffde048430d350 (diff) | |
download | vyos-1x-7a509a4d725eb9f9786d9abc59a90fe8e31e4c1f.tar.gz vyos-1x-7a509a4d725eb9f9786d9abc59a90fe8e31e4c1f.zip |
ifconfig: T2104: remove superfluous __init__ in derived classes
__init__ should be added to a derived class only if it does work in the ctor.
Diffstat (limited to 'python/vyos/ifconfig/macvlan.py')
-rw-r--r-- | python/vyos/ifconfig/macvlan.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/vyos/ifconfig/macvlan.py b/python/vyos/ifconfig/macvlan.py index a86f84f3e..da3beea8b 100644 --- a/python/vyos/ifconfig/macvlan.py +++ b/python/vyos/ifconfig/macvlan.py @@ -27,9 +27,6 @@ class MACVLANIf(VLANIf): 'type': 'macvlan', } - def __init__(self, ifname, **kargs): - super().__init__(ifname, **kargs) - def _create(self): cmd = 'ip link add {ifname} link {link} type macvlan mode {mode}'.format( **self.config) |