mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-29 02:46:24 +02:00
fix pylint
This commit is contained in:
parent
b7bd846769
commit
6dfa4e2c9e
5 changed files with 12 additions and 13 deletions
|
|
@ -54,4 +54,4 @@ class ProductManager(Role):
|
|||
return self._rc.todo
|
||||
|
||||
async def _observe(self, ignore_memory=False) -> int:
|
||||
return await super(ProductManager, self)._observe(ignore_memory=True)
|
||||
return await super()._observe(ignore_memory=True)
|
||||
|
|
|
|||
|
|
@ -178,4 +178,4 @@ class QaEngineer(Role):
|
|||
async def _observe(self, ignore_memory=False) -> int:
|
||||
# This role has events that trigger and execute themselves based on conditions, and cannot rely on the
|
||||
# content of memory to activate.
|
||||
return await super(QaEngineer, self)._observe(ignore_memory=True)
|
||||
return await super()._observe(ignore_memory=True)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue