From 4ba90a727b63d79dc0d9c25b3e576cd2ced0bf76 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 12 Mar 2019 13:56:38 -0400 Subject: [PATCH] make apply not abstract --- torba/client/baseaccount.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/torba/client/baseaccount.py b/torba/client/baseaccount.py index 581fe1459..9851582cd 100644 --- a/torba/client/baseaccount.py +++ b/torba/client/baseaccount.py @@ -43,7 +43,7 @@ class AddressManager: return d def apply(self, d: dict): - raise NotImplementedError + pass def to_dict_instance(self) -> Optional[dict]: raise NotImplementedError @@ -168,9 +168,6 @@ 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