This commit is contained in:
Marc Beninca 2024-09-17 12:53:17 +02:00
parent e5bb634cf4
commit 622122cdef
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -9,7 +9,11 @@ class Project(Class):
"""Parent class for any type of project."""
def __init__(self, file: Path) -> None:
"""Set file, root & name."""
"""Set file, root & name.
:param file: root reference file
:type file: Path
"""
self.raw = file
self.file = self.raw.resolve()
self.root: Path = self.file.parent