(self, line)
| 422 | except: continue |
| 423 | |
| 424 | def insert(self, line): |
| 425 | self.console_text.insert('end',line+'\n') |
| 426 | self.console_text.see('end') |
| 427 | if(int(self.console_text.index('end').split('.')[0]) is 26): |
| 428 | self.vbar.config(style = 'TScrollbar') |
| 429 | |
| 430 | def progress(self, percentage): |
| 431 | self.console_text.delete('insert linestart', 'insert lineend') |
no outgoing calls
no test coverage detected