Remove useless __init__ methods
This commit is contained in:
parent
cab8c7d43a
commit
c0cfa7ae92
|
|
@ -29,12 +29,8 @@ class Systemd(Ini):
|
||||||
"""
|
"""
|
||||||
Placeholder class to do systemd specific setups.
|
Placeholder class to do systemd specific setups.
|
||||||
"""
|
"""
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
super(Systemd, self).__init__(*args, **kwargs)
|
|
||||||
|
|
||||||
class Networkd(Systemd):
|
class Networkd(Systemd):
|
||||||
"""
|
"""
|
||||||
Placeholder class to do systemd-network specific setups.
|
Placeholder class to do systemd-network specific setups.
|
||||||
"""
|
"""
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
super(Networkd, self).__init__(*args, **kwargs)
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue