(self, r)
| 384 | self.maximum_value_of_ai.grid(row=r, column=2) |
| 385 | |
| 386 | def get_b(self, r): |
| 387 | self.minimum_value_of_bi = Entry( |
| 388 | gui, textvariable=b_min, font=("calibre", 10, "normal") |
| 389 | ) |
| 390 | self.min_max_values_of_bi_label = Label( |
| 391 | gui, text=" <= Bi <= ", font=("calibre", 10, "bold") |
| 392 | ) |
| 393 | self.maximum_value_of_bi = Entry( |
| 394 | gui, textvariable=b_max, font=("calibre", 10, "normal") |
| 395 | ) |
| 396 | self.minimum_value_of_bi.grid(row=r, column=0, pady=10) |
| 397 | self.min_max_values_of_bi_label.grid(row=r, column=1, padx=10) |
| 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( |
no outgoing calls
no test coverage detected