Remove useless __init__ methods

This commit is contained in:
Richard Neumann 2021-04-01 20:46:28 +02:00
parent cab8c7d43a
commit c0cfa7ae92
1 changed files with 0 additions and 4 deletions

View File

@ -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)