From 345b44b1bd384ad68653c342ec1db2edad69c980 Mon Sep 17 00:00:00 2001 From: "molecule-ai[bot]" <276602405+molecule-ai[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 22:15:51 +0000 Subject: [PATCH] fix(lint): remove unused `typing.Any` import (ruff F401) --- molecule_plugin/workspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule_plugin/workspace.py b/molecule_plugin/workspace.py index 5ed68ed..92a5595 100644 --- a/molecule_plugin/workspace.py +++ b/molecule_plugin/workspace.py @@ -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"] +