forked from LBRYCommunity/lbry-sdk
make apply not abstract
This commit is contained in:
parent
27558ffd89
commit
4ba90a727b
1 changed files with 1 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue