diff --git a/src/bokeh/core/property/wrappers.py b/src/bokeh/core/property/wrappers.py index 583fa3cf8c4..a333e4763ca 100644 --- a/src/bokeh/core/property/wrappers.py +++ b/src/bokeh/core/property/wrappers.py @@ -257,7 +257,8 @@ def pop(self, index=-1): @notify_owner def remove(self, obj): - return super().remove(obj) + # Use list's remove directly, avoids method resolution slowing down next-MRO call + return list.remove(self, obj) @notify_owner def reverse(self):