mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
Merge pull request #361 from Wallacoloo/patch-1
Fixed indexing a function rather than calling it in WalletStorage.put
This commit is contained in:
commit
ff964df8ea
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class WalletStorage:
|
|||
if value is not None:
|
||||
self.data[key] = value
|
||||
else:
|
||||
self.data.pop[key]
|
||||
self.data.pop(key)
|
||||
if save:
|
||||
self.write()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue