fixbug: MGX-46

This commit is contained in:
莘权 马 2024-06-05 21:15:42 +08:00
parent 0c88a092c9
commit 5b8f0331e5

View file

@ -434,6 +434,10 @@ class Engineer(Role):
if filename.suffix != ".py":
continue
workdir = self.src_workspace / filename.parent
if not workdir.exists():
workdir = self.project_repo.workdir / filename.parent
if not workdir.exists():
return
await init_python_folder(workdir)
async def _is_fixbug(self) -> bool: