Move class-related docstring to class definition
This commit is contained in:
parent
1d54a625f4
commit
cab8c7d43a
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue