diff --git a/plugins/game_reader_test/plugin.py b/plugins/game_reader_test/plugin.py index 648f71c..e227e09 100644 --- a/plugins/game_reader_test/plugin.py +++ b/plugins/game_reader_test/plugin.py @@ -959,20 +959,6 @@ class GameReaderTestPlugin(BasePlugin): statuses.append("\nšŸ’” Recommendation: EasyOCR is easiest (auto-downloads models)") - self.backend_status.setPlainText('\n'.join(statuses)) - from paddleocr import PaddleOCR - statuses.append("āœ… PaddleOCR - Available") - except ImportError: - statuses.append("āŒ PaddleOCR - Not installed\n Install: pip install paddleocr") - - try: - from PIL import ImageGrab - statuses.append("āœ… Screen Capture - Available") - except ImportError: - statuses.append("āŒ Screen Capture - PIL not available") - - statuses.append("\nšŸ’” Recommendation: Use EasyOCR - it auto-installs required models") - self.backend_status.setPlainText('\n'.join(statuses)) def shutdown(self):