(self, parent)
| 31 | |
| 32 | class Notebook: |
| 33 | def __init__(self, parent): |
| 34 | self.parent = parent |
| 35 | # ========== Data Key ========== |
| 36 | self.data_dic = { |
| 37 | "A": "Q", |
| 38 | "B": "W", |
| 39 | "C": "E", |
| 40 | "D": "R", |
| 41 | "E": "T", |
| 42 | "F": "Y", |
| 43 | "G": "U", |
| 44 | "H": "I", |
| 45 | "I": "O", |
| 46 | "J": "P", |
| 47 | "K": "A", |
| 48 | "L": "S", |
| 49 | "M": "D", |
| 50 | "N": "F", |
| 51 | "O": "G", |
| 52 | "P": "H", |
| 53 | "Q": "J", |
| 54 | "R": "K", |
| 55 | "S": "L", |
| 56 | "T": "Z", |
| 57 | "U": "X", |
| 58 | "V": "C", |
| 59 | "W": "V", |
| 60 | "X": "B", |
| 61 | "Y": "N", |
| 62 | "Z": "M", |
| 63 | "a": "q", |
| 64 | "b": "w", |
| 65 | "c": "e", |
| 66 | "d": "r", |
| 67 | "e": "t", |
| 68 | "f": "y", |
| 69 | "g": "u", |
| 70 | "h": "i", |
| 71 | "i": "o", |
| 72 | "j": "p", |
| 73 | "k": "a", |
| 74 | "l": "s", |
| 75 | "m": "d", |
| 76 | "n": "f", |
| 77 | "o": "g", |
| 78 | "p": "h", |
| 79 | "q": "j", |
| 80 | "r": "k", |
| 81 | "s": "l", |
| 82 | "t": "z", |
| 83 | "u": "x", |
| 84 | "v": "c", |
| 85 | "w": "v", |
| 86 | "x": "b", |
| 87 | "y": "n", |
| 88 | "z": "m", |
| 89 | "1": "_", |
| 90 | "2": "-", |
nothing calls this directly
no test coverage detected