mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
kivy: fix app not even starting
```
File "/home/user/venvs/electrum37/lib64/python3.7/site-packages/kivy/lang/builder.py", line 654, in _apply_rule
child = cls(__no_builder=True)
TypeError: __init__() got an unexpected keyword argument '__no_builder'
```
follow-up c70484455c
This commit is contained in:
parent
8ac6d3b17d
commit
914b606cb9
1 changed files with 2 additions and 2 deletions
|
@ -179,8 +179,8 @@ class SendScreen(CScreen, Logger):
|
|||
payment_request = None # type: Optional[PaymentRequest]
|
||||
parsed_URI = None
|
||||
|
||||
def __init__(self):
|
||||
CScreen.__init__(self)
|
||||
def __init__(self, **kwargs):
|
||||
CScreen.__init__(self, **kwargs)
|
||||
Logger.__init__(self)
|
||||
|
||||
def set_URI(self, text: str):
|
||||
|
|
Loading…
Add table
Reference in a new issue