rwx/rwx/os/debian.py

12 lines
195 B
Python
Raw Normal View History

2024-09-14 15:23:06 +02:00
"""Debian operating system."""
2024-09-14 23:40:39 +02:00
from .abstract import OS
2024-09-14 15:23:06 +02:00
class Debian(OS):
"""Debian operating system."""
def get_name(self) -> str:
"""Return name."""
return "Debian"