This commit is contained in:
Marc Beninca 2024-09-16 21:45:21 +02:00
parent 8227524a7c
commit e5bb634cf4
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
4 changed files with 0 additions and 30 deletions

View file

@ -17,10 +17,3 @@ class OS(Class, ABC):
@abstractmethod @abstractmethod
def get_name(self) -> str: def get_name(self) -> str:
"""Return mandatory name.""" """Return mandatory name."""
def __str__(self) -> str:
"""Return root & name."""
return f"""\
root = {self.root}
name = {self.name}
"""

View file

@ -21,10 +21,3 @@ class PM(Class, ABC):
@abstractmethod @abstractmethod
def get_install_command(self) -> Command: def get_install_command(self) -> Command:
"""Command to install package(s).""" """Command to install package(s)."""
def __str__(self) -> str:
"""Return commands."""
return f"""\
clean = {self.clean}
install = {self.install}
"""

View file

@ -14,12 +14,3 @@ class Project(Class):
self.file = self.raw.resolve() self.file = self.raw.resolve()
self.root: Path = self.file.parent self.root: Path = self.file.parent
self.name: str = self.root.name self.name: str = self.root.name
def __str__(self) -> str:
"""Return file, root & name."""
return f"""\
raw = {self.raw}
file = {self.file}
root = {self.root}
name = {self.name}
"""

View file

@ -13,13 +13,6 @@ class Command(Class):
self.raw = arguments self.raw = arguments
self.flat: list[str] = [] self.flat: list[str] = []
def __str__(self) -> str:
"""Return raw & flat."""
return f"""\
raw = {self.raw}
flat = {self.flat}
"""
def get_tuples_args(*items: str | tuple[str, ...]) -> list[str]: def get_tuples_args(*items: str | tuple[str, ...]) -> list[str]:
"""Turn arguments tuples into an arguments list.""" """Turn arguments tuples into an arguments list."""