doc/projects
Some checks failed
/ arch (push) Successful in 1m39s
/ alpine (push) Successful in 42s
/ fedora (push) Successful in 11m26s
/ opensuse (push) Successful in 2m19s
/ alma (push) Successful in 2m31s
/ rocky (push) Successful in 3m57s
/ ubuntu (push) Successful in 1m26s
/ debian (push) Failing after 1m3s
Some checks failed
/ arch (push) Successful in 1m39s
/ alpine (push) Successful in 42s
/ fedora (push) Successful in 11m26s
/ opensuse (push) Successful in 2m19s
/ alma (push) Successful in 2m31s
/ rocky (push) Successful in 3m57s
/ ubuntu (push) Successful in 1m26s
/ debian (push) Failing after 1m3s
This commit is contained in:
parent
0d1ad96295
commit
f0aa902904
1 changed files with 10 additions and 2 deletions
|
@ -35,11 +35,19 @@ class Projects:
|
|||
self.url = add_url_path(value, self.group)
|
||||
|
||||
def __repr__(self) -> str:
|
||||
"""Represent projects."""
|
||||
"""Represent projects.
|
||||
|
||||
:return: representation
|
||||
:rtype: str
|
||||
"""
|
||||
return "Projects()"
|
||||
|
||||
def __str__(self) -> str:
|
||||
"""List group, name & url."""
|
||||
"""List group, name & url.
|
||||
|
||||
:return: string
|
||||
:rtype: str
|
||||
"""
|
||||
return f"""\
|
||||
group = {self.group}
|
||||
name = {self.name}
|
||||
|
|
Loading…
Reference in a new issue