From 8a5f478ed3fe2fd95a36854fa356f8a7e112ab51 Mon Sep 17 00:00:00 2001 From: Florian Magin Date: Mon, 6 Jan 2020 13:40:37 +0100 Subject: [PATCH] Add required interface methods as NotImplemented --- internalblue/core.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internalblue/core.py b/internalblue/core.py index 5773b15..8a8e2e9 100755 --- a/internalblue/core.py +++ b/internalblue/core.py @@ -1733,3 +1733,9 @@ class InternalBlue: # itself crashes when receiving diagnostic frames... else: log.warn("Diagnostic protocol requires modified Android driver!") + + def _setupSockets(self): + raise NotImplementedError() + + def _teardownSockets(self): + raise NotImplementedError()