This commit is contained in:
Marc Beninca 2024-09-15 01:35:33 +02:00
parent 0ad5cc9701
commit f2991cff04
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

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