doc/prj
This commit is contained in:
parent
e5bb634cf4
commit
622122cdef
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue