"""Debian operating system."""
from .abstract import OS
class Debian(OS):
def get_name(self) -> str:
"""Return name."""
return "Debian"