fixbug: _init_python_folder

This commit is contained in:
莘权 马 2024-06-06 13:03:25 +08:00
parent f37b12a8ec
commit 67117b9fe7

View file

@ -496,9 +496,9 @@ class Engineer(Role):
filename = Path(i)
if filename.suffix != ".py":
continue
workdir = self.src_workspace / filename.parent
workdir = self.repo.srcs.workdir / filename.parent
if not workdir.exists():
workdir = self.project_repo.workdir / filename.parent
workdir = self.repo.workdir / filename.parent
await init_python_folder(workdir)
async def _is_fixbug(self) -> bool: