Remove vestigial cast from earlier tests

This commit is contained in:
Dave Pearson
2022-12-15 14:46:37 +00:00
parent f25f6cbbb5
commit b0de5aed3d

View File

@@ -1743,7 +1743,7 @@ class App(Generic[ReturnType], DOMNode):
"""
for namespace, bindings in (
list(reversed(self._binding_chain)) if priority else self._binding_chain
reversed(self._binding_chain) if priority else self._binding_chain
):
binding = bindings.keys.get(key)
if binding is not None and binding.priority == priority: