mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 03:24:20 +00:00
🐛 Fix _conv propagation
This commit is contained in:
parent
4d446454c0
commit
fbf779e718
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class Router(c.Conversation, metaclass=abc.ABCMeta):
|
|||
log.debug(f"{pattern.pattern!r} → {conv!r}")
|
||||
self.by_pattern[pattern] = conv
|
||||
|
||||
async def run(self, _sentry: s.Sentry, **kwargs) -> None:
|
||||
async def run(self, _sentry: s.Sentry, _conv: t.ConversationProtocol, **kwargs) -> None:
|
||||
"""
|
||||
.. todo:: Document this.
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue