tkivy: fix app not even starting - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 914b606cb9dcfd579fb03d83bf9d78c2af1eb1ae DIR parent 8ac6d3b17d221aed7bc3e3dd6a9f1e54425890ae HTML Author: SomberNight <somber.night@protonmail.com> Date: Tue, 20 Oct 2020 14:55:39 +0200 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 c70484455c561b53664ba349cb88587bc349efc9 Diffstat: M electrum/gui/kivy/uix/screens.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/electrum/gui/kivy/uix/screens.py b/electrum/gui/kivy/uix/screens.py t@@ -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):