mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-03 04:42:38 +02:00
bug fix and proper log
This commit is contained in:
parent
5c341cb053
commit
437abd1754
2 changed files with 2 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