(self, src: BoardList, dst: BoardList)
| 76 | self.lists.remove(board_list) |
| 77 | |
| 78 | def move_list(self, src: BoardList, dst: BoardList) -> None: |
| 79 | src_index = self.lists.index(src) |
| 80 | dst_index = self.lists.index(dst) |
| 81 | if src_index != dst_index: |
| 82 | self.lists.insert(dst_index, self.lists.pop(src_index)) |
| 83 | |
| 84 | |
| 85 | @ft.observable |