fix: Add missing 'import re' to game_reader_test plugin

The _parse_skills_from_text method uses re (regex) but it was only
imported inside a nested function, not at module level.

Added 'import re' at the top of the file.
This commit is contained in:
LemonNexus 2026-02-15 00:18:54 +00:00
parent 419b0cb523
commit bf42c2a1b7
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. Tests screen capture, OCR accuracy, and text extraction.
""" """
import re
from pathlib import Path from pathlib import Path
from PyQt6.QtWidgets import ( from PyQt6.QtWidgets import (
QWidget, QVBoxLayout, QHBoxLayout, QTextEdit, QWidget, QVBoxLayout, QHBoxLayout, QTextEdit,