This commit is contained in:
Marc Beninca 2024-09-16 21:29:25 +02:00
parent f0aa902904
commit 4cab5f3894
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 0 additions and 12 deletions

View file

@ -45,10 +45,6 @@ class Project:
# url
self.url = add_url_path(projects.url, self.name)
def __repr__(self) -> str:
"""Represent project."""
return f"Project(projects={self.projects!r})"
def __str__(self) -> str:
"""List branch, name, root & url."""
return f"""\

View file

@ -34,14 +34,6 @@ class Projects:
if value := self.environment.get(variable, None):
self.url = add_url_path(value, self.group)
def __repr__(self) -> str:
"""Represent projects.
:return: representation
:rtype: str
"""
return "Projects()"
def __str__(self) -> str:
"""List group, name & url.