Definition at line 19 of file projectstatus.py.
def python.projectstatus.ProjectStatus.__init__ |
( |
|
self, |
|
|
|
projects |
|
) |
| |
Definition at line 23 of file projectstatus.py.
29 for project
in projects:
30 for stage
in project.stages:
31 self.
stats[stage.name] = StageStatus(stage)
def __init__(self, projects)
def python.projectstatus.ProjectStatus.get_stage_status |
( |
|
self, |
|
|
|
stagename |
|
) |
| |
Definition at line 44 of file projectstatus.py.
45 return self.
stats[stagename]
46
def get_stage_status(self, stagename)
def python.projectstatus.ProjectStatus.update |
( |
|
self | ) |
|
Definition at line 35 of file projectstatus.py.
39 for stagename
in list(self.stats.keys()):
python.projectstatus.ProjectStatus.projects |
python.projectstatus.ProjectStatus.stats |
The documentation for this class was generated from the following file: