(self, sequence: str = None, funcid: str = None)
| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected