From 8e49f4e45eaf183d7cfac0053ac3257aa4f7c2da Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Sat, 14 Feb 2026 23:55:02 +0000 Subject: [PATCH] fix: Add missing Path import to game_reader_test plugin BUG: NameError: name 'Path' is not defined when browsing for image file. The pathlib.Path import was missing. Added it to the imports section. --- plugins/game_reader_test/plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/game_reader_test/plugin.py b/plugins/game_reader_test/plugin.py index e227e09..7c82cde 100644 --- a/plugins/game_reader_test/plugin.py +++ b/plugins/game_reader_test/plugin.py @@ -5,6 +5,7 @@ Debug and test tool for OCR and game reading functionality. Tests screen capture, OCR accuracy, and text extraction. """ +from pathlib import Path from PyQt6.QtWidgets import ( QWidget, QVBoxLayout, QHBoxLayout, QTextEdit, QLabel, QPushButton, QComboBox, QCheckBox,