From 33f3a02985a3a30157fb68a48561e835c22e4e5c Mon Sep 17 00:00:00 2001 From: maike Date: Wed, 15 Jul 2020 13:55:03 +0200 Subject: [PATCH] [core] Fix protected attributes in platformapi.py --- kibicara/platformapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kibicara/platformapi.py b/kibicara/platformapi.py index e4d4f42..7074206 100644 --- a/kibicara/platformapi.py +++ b/kibicara/platformapi.py @@ -126,8 +126,8 @@ class Censor: """ if not await self.__is_appropriate(message): return False - for censor in self.hood_censors: - await censor.inbox.put(message) + for censor in self.__hood_censors: + await censor._inbox.put(message) return True async def receive(self):