Revert "Added back the functionality for tech lead to break down the project and the developer to code task by task"

This reverts commit 990eb0d182.
This commit is contained in:
Zvonimir Sabljic
2023-09-05 23:13:09 +02:00
parent dcb0ad5c0d
commit f91da2b5eb
5 changed files with 18 additions and 44 deletions

View File

@@ -76,11 +76,8 @@ class Project:
self.architect = Architect(self)
self.architecture = self.architect.get_architecture()
self.developer = Developer(self)
self.developer.set_up_environment();
self.tech_lead = TechLead(self)
self.development_plan = self.tech_lead.create_development_plan()
# self.tech_lead = TechLead(self)
# self.development_plan = self.tech_lead.create_development_plan()
# TODO move to constructor eventually
if 'skip_until_dev_step' in self.args:
@@ -94,6 +91,9 @@ class Project:
self.save_files_snapshot(self.skip_until_dev_step)
# TODO END
self.developer = Developer(self)
self.developer.set_up_environment();
self.developer.start_coding()
def get_directory_tree(self, with_descriptions=False):