From b8891c5fb72485316fba54d2c1310320c9ebf4d5 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Fri, 27 Dec 2024 23:24:44 -0800 Subject: [PATCH] Fix regression test This test was broken due to unused imports being automatically removed in abecc97bad09f0ef662787c85381ae8d3619224e. --- tests/dotbot_plugin_issue_357.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/dotbot_plugin_issue_357.py b/tests/dotbot_plugin_issue_357.py index 10574b6..8b517ea 100644 --- a/tests/dotbot_plugin_issue_357.py +++ b/tests/dotbot_plugin_issue_357.py @@ -1,9 +1,14 @@ from typing import Any from dotbot.plugin import Plugin +from dotbot.plugins import Clean, Create, Link, Shell # https://github.com/anishathalye/dotbot/issues/357 # if we import from dotbot.plugins, the built-in plugins get executed multiple times +_: Any = Clean +_ = Create +_ = Link +_ = Shell class NoopPlugin(Plugin):