(self, r)
| 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( |
| 414 | gui, |
| 415 | text=" HOME ", |
| 416 | command=lambda: self.forget_testcase_take_input_screen(1), |
| 417 | font="calibre", |
| 418 | bd=3, |
| 419 | ) |
| 420 | self.sub_btn = Button( |
| 421 | gui, text=" GENERATE ", command=self.submit, font="calibre", bd=3 |
| 422 | ) |
| 423 | self.exit_btn = Button( |
| 424 | gui, text=" EXIT ", command=lambda: gui.destroy(), font="calibre", bd=3 |
| 425 | ) |
| 426 | self.back_btn.grid(row=r, column=0, pady=(20, 20), ipady=1) |
| 427 | self.sub_btn.grid(row=r, column=1, pady=(20, 20), ipady=1) |
| 428 | self.exit_btn.grid(row=r, column=2, pady=(20, 20), ipady=1) |
| 429 | self.copyright_label.place(relx=0.9, y=0) |
| 430 | |
| 431 | def submit(self): |
| 432 | try: |
no test coverage detected