(self)
| 541 | subprocess.Popen([sys.executable, fn], cwd=path, env=env) |
| 542 | |
| 543 | def showFile(self): |
| 544 | fn = self.currentFile() |
| 545 | text = self.getExampleContent(fn) |
| 546 | self.ui.codeView.setPlainText(text) |
| 547 | self.ui.loadedFileLabel.setText(fn) |
| 548 | self.codeBtn.hide() |
| 549 | |
| 550 | @lru_cache(100) |
| 551 | def getExampleContent(self, filename): |
nothing calls this directly
no test coverage detected