MCPcopy Create free account
hub / github.com/Akascape/CTkTable / unbind

Method unbind

CTkTable/ctktable.py:711–719  ·  view source on GitHub ↗
(self, sequence: str = None, funcid: str = None)

Source from the content-addressed store, hash-verified

709 self.inside_frame.bind(sequence, command, add)
710
711 def unbind(self, sequence: str = None, funcid: str = None):
712 for i in self.binded_objects:
713 if sequence in i:
714 self.binded_objects.remove(i)
715
716 super().unbind(sequence, funcid)
717 for i in self.frame:
718 self.frame[i].unbind(sequence, funcid)
719 self.inside_frame.unbind(sequence, funcid)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected