mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-03 12:52:37 +02:00
bug fix and proper log
This commit is contained in:
parent
f1c6a7ebfb
commit
d5d7db0bf8
2 changed files with 3 additions and 3 deletions
|
|
@ -37,7 +37,7 @@ class DependencyFile:
|
|||
"""Load dependencies from the file asynchronously."""
|
||||
if not self._filename.exists():
|
||||
return
|
||||
self._dependencies = await aread(self._filename)
|
||||
self._dependencies = json.loads(await aread(self._filename))
|
||||
|
||||
@handle_exception
|
||||
async def save(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue