Move class-related docstring to class definition

This commit is contained in:
Richard Neumann 2021-04-01 20:45:45 +02:00
parent 1d54a625f4
commit cab8c7d43a
1 changed files with 7 additions and 7 deletions

View File

@ -26,15 +26,15 @@ class Ini():
return result
class Systemd(Ini):
"""
Placeholder class to do systemd specific setups.
"""
def __init__(self, *args, **kwargs):
"""
Placeholder class to do systemd specific setups.
"""
super(Systemd, self).__init__(*args, **kwargs)
class Networkd(Systemd):
"""
Placeholder class to do systemd-network specific setups.
"""
def __init__(self, *args, **kwargs):
"""
Placeholder class to do systemd-network specific setups.
"""
super(Networkd, self).__init__(*args, **kwargs)
super(Networkd, self).__init__(*args, **kwargs)