fix(lint): remove unused typing.Any import (ruff F401)

This commit is contained in:
molecule-ai[bot] 2026-04-23 22:15:51 +00:00 committed by GitHub
parent 304b390c02
commit 345b44b1bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,6 @@ from __future__ import annotations
from dataclasses import dataclass
from pathlib import Path
from typing import Any
import yaml
@ -115,3 +114,4 @@ def validate_workspace_template(path: Path) -> list[ValidationError]:
# Re-exported for type hints in __init__.py
__all__ = ["ValidationError", "SUPPORTED_RUNTIMES", "validate_workspace_template"]