style(core): move Path import to TYPE_CHECKING block in types.py

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-12 22:36:00 -04:00
parent cd5c9c01fb
commit ec4cbbdd44
+3
View File
@@ -3,6 +3,9 @@
from __future__ import annotations
from dataclasses import dataclass, field
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from pathlib import Path as _Path