docstring/class

This commit is contained in:
Marc Beninca 2024-08-19 18:17:50 +02:00
parent 7dd1dc6dcf
commit e9e3779018
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@ ROOT = [
class Project: class Project:
"""Current project."""
def __init__(self: Project, projects: Projects) -> None: def __init__(self: Project, projects: Projects) -> None:
"""Set projects, branch, name, root & url.""" """Set projects, branch, name, root & url."""
self.projects = projects self.projects = projects

View file

@ -18,6 +18,7 @@ SERVER_URL = [
class Projects: class Projects:
"""Other projects."""
def __init__(self: Projects) -> None: def __init__(self: Projects) -> None:
"""Set environment, group, name & url.""" """Set environment, group, name & url."""
self.environment = os.environ self.environment = os.environ