From 51a201dc2dedf42727aff30dcc29faa04a2d3ad1 Mon Sep 17 00:00:00 2001 From: dece Date: Thu, 1 Dec 2022 12:03:45 +0100 Subject: [PATCH] gpt3: fix bad method call --- edmond/plugins/gpt3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edmond/plugins/gpt3.py b/edmond/plugins/gpt3.py index 3cc2a98..4efd20f 100644 --- a/edmond/plugins/gpt3.py +++ b/edmond/plugins/gpt3.py @@ -24,7 +24,7 @@ class Gpt3Plugin(Plugin): if completion and (reply := self.sanitize(completion)): self.bot.say(target, reply) else: - self.bot.signal_failure(target) + self.signal_failure(target) def complete(self, prompt: str) -> Optional[str]: try: