From 27558ffd890b4ad66846dec11ff74bf7b1fb58f6 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 12 Mar 2019 13:33:28 -0400 Subject: [PATCH] implement abstract method for pylint --- torba/client/baseaccount.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/torba/client/baseaccount.py b/torba/client/baseaccount.py index 896bc3840..581fe1459 100644 --- a/torba/client/baseaccount.py +++ b/torba/client/baseaccount.py @@ -168,6 +168,9 @@ class SingleKey(AddressManager): same_address_manager = cls(account, account.public_key, 0) return same_address_manager, same_address_manager + def apply(self, d: dict): + pass + def to_dict_instance(self): return None