Fix TC003: Move Path import to TYPE_CHECKING block

Path was imported at top level but only used in type hints,
causing ruff TC003 error in CI.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Adam Ladachowski
2026-02-14 02:17:38 +01:00
parent 423e475370
commit 706cc765e9
+1 -1
View File
@@ -2,13 +2,13 @@
from __future__ import annotations
from pathlib import Path
from typing import TYPE_CHECKING, Any
import httpx
if TYPE_CHECKING:
from collections.abc import Iterator
from pathlib import Path
class TsrClientError(Exception):