(self, r)
| 398 | self.maximum_value_of_bi.grid(row=r, column=2, padx=10) |
| 399 | |
| 400 | def get_char_list(self, r): |
| 401 | self.char_list_label = Label( |
| 402 | gui, text=" Characters : ", font=("calibre", 10, "bold"), width=17 |
| 403 | ) |
| 404 | self.char_list = Entry( |
| 405 | gui, textvariable=char_lis, font=("calibre", 10, "normal"), width=43 |
| 406 | ) |
| 407 | self.char_list.insert(END, "(Space separated characters)") |
| 408 | self.char_list.bind("<FocusIn>", lambda args: self.char_list.delete("0", "end")) |
| 409 | self.char_list_label.grid(row=r, column=0, pady=10) |
| 410 | self.char_list.grid(row=r, column=1, columnspan=2, padx=10) |
| 411 | |
| 412 | def show_button(self, r): |
| 413 | self.back_btn = Button( |
no test coverage detected