1
0
Fork 0
mirror of synced 2025-01-02 19:28:59 -05:00

Fix regression test

This test was broken due to unused imports being automatically removed
in abecc97bad.
This commit is contained in:
Anish Athalye 2024-12-27 23:24:44 -08:00
parent abecc97bad
commit b8891c5fb7

View file

@ -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):