diff --git a/AnkiConnect.py b/AnkiConnect.py index 3f25a9f..31f116a 100644 --- a/AnkiConnect.py +++ b/AnkiConnect.py @@ -540,7 +540,6 @@ class AnkiConnect: def handler(self, request): action = 'api_' + request.get('action', '') if hasattr(self, action): - return getattr(self, action)(**(request.get('params') or {})) try: return getattr(self, action)(**(request.get('params') or {})) except TypeError: