Description of the issue and expected behavior
While reviewing the codebase, I noticed a few standard library imports that are no longer being used. Leaving unused imports can cause minor clutter and trigger linter warnings.
Specific instances:
import sys in pdf.py
import re in evaluator.py
List and Dict from typing in score.py
Expected behavior:
Remove the unused imports to improve code readability while ensuring no active logic breaks.
(Note: I have already gone ahead and submitted a fix for this in PR #261)
Description of the issue and expected behavior
While reviewing the codebase, I noticed a few standard library imports that are no longer being used. Leaving unused imports can cause minor clutter and trigger linter warnings.
Specific instances:
import sysinpdf.pyimport reinevaluator.pyListandDictfromtypinginscore.pyExpected behavior:
Remove the unused imports to improve code readability while ensuring no active logic breaks.
(Note: I have already gone ahead and submitted a fix for this in PR #261)