14 lines
225 B
Python
14 lines
225 B
Python
"""Debian operating system."""
|
|
|
|
from .abstract import OS
|
|
|
|
|
|
class Debian(OS):
|
|
"""Debian operating system."""
|
|
|
|
def get_name(self) -> str:
|
|
"""Return name.
|
|
|
|
:rtype: str
|
|
"""
|
|
return "Debian"
|