From 622122cdefd7bd32a1647d24e3f637bbc555ae8f Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 17 Sep 2024 12:53:17 +0200 Subject: [PATCH] doc/prj --- rwx/prj/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rwx/prj/__init__.py b/rwx/prj/__init__.py index c0251e2..cfbe3ae 100644 --- a/rwx/prj/__init__.py +++ b/rwx/prj/__init__.py @@ -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