|
@@ -12,7 +12,6 @@ including both outbound messaging and realtime WebSocket connections.
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
-import inspect
|
|
|
|
|
import random
|
|
import random
|
|
|
|
|
|
|
|
from gateway.platforms.helpers import MessageDeduplicator
|
|
from gateway.platforms.helpers import MessageDeduplicator
|
|
@@ -259,12 +258,6 @@ class ChattoAdapter(BasePlatformAdapter):
|
|
|
self._dedup = MessageDeduplicator()
|
|
self._dedup = MessageDeduplicator()
|
|
|
|
|
|
|
|
|
|
|
|
|
- def _list_functions(self):
|
|
|
|
|
- for name, member in inspect.getmembers(self, predicate=callable):
|
|
|
|
|
- # filtert dunder-Methoden falls gewünscht
|
|
|
|
|
- if not name.startswith('__'):
|
|
|
|
|
- logger.info("functions: %s", name)
|
|
|
|
|
-
|
|
|
|
|
# ------------------------------------------------------------------ #
|
|
# ------------------------------------------------------------------ #
|
|
|
# Auth
|
|
# Auth
|
|
|
# ------------------------------------------------------------------ #
|
|
# ------------------------------------------------------------------ #
|
|
@@ -387,8 +380,6 @@ class ChattoAdapter(BasePlatformAdapter):
|
|
|
)
|
|
)
|
|
|
self._mark_connected()
|
|
self._mark_connected()
|
|
|
|
|
|
|
|
- self._list_functions()
|
|
|
|
|
-
|
|
|
|
|
logger.info(
|
|
logger.info(
|
|
|
"Chatto: connected and authentiated to %s using login:'%s' (display_name:'%s' id: '%s')",
|
|
"Chatto: connected and authentiated to %s using login:'%s' (display_name:'%s' id: '%s')",
|
|
|
self.chatto_config.base_url.value,
|
|
self.chatto_config.base_url.value,
|