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.
This commit is contained in:
LemonNexus 2026-02-14 23:55:02 +00:00
parent 88f112dfa2
commit 8e49f4e45e
1 changed files with 1 additions and 0 deletions

View File

@ -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,