diff --git a/src/path.py b/src/path.py index 4501fde..f834e52 100644 --- a/src/path.py +++ b/src/path.py @@ -51,4 +51,10 @@ class Path(): path: Path = Path(self._absolute_path, element) if (os.path.isfile(path.get_absolute_path())): files.append(path) - return files \ No newline at end of file + return files + + def __str__(self): + return self._absolute_path + + def __repr__(self): + return f"Path({self._absolute_path})" \ No newline at end of file