We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d48005 commit 94c05aaCopy full SHA for 94c05aa
src/textual/dom.py
@@ -229,7 +229,7 @@ def _merge_bindings(cls) -> Bindings:
229
if issubclass(base, DOMNode):
230
if not base._inherit_bindings:
231
bindings.clear()
232
- bindings.append(Bindings(base.BINDINGS))
+ bindings.append(Bindings(base.__dict__.get("BINDINGS", [])))
233
keys = {}
234
for bindings_ in bindings:
235
keys.update(bindings_.keys)
0 commit comments