fix updating of app status

This commit is contained in:
LeonOstrez
2023-10-01 02:46:45 +01:00
parent 0cec2a45bf
commit 4713a68040
6 changed files with 31 additions and 53 deletions

View File

@@ -94,7 +94,7 @@ class Project:
self.architecture = self.architect.get_architecture()
self.developer = Developer(self)
self.developer.set_up_environment();
self.developer.set_up_environment()
self.tech_lead = TechLead(self)
self.development_plan = self.tech_lead.create_development_plan()
@@ -129,12 +129,6 @@ class Project:
break
# TODO END
self.developer = Developer(self)
print(json.dumps({
"project_stage": "environment_setup"
}), type='info')
self.developer.set_up_environment()
print(json.dumps({
"project_stage": "coding"
}), type='info')