Skip to content

Commit

Permalink
Fix regression test
Browse files Browse the repository at this point in the history
This test was broken due to unused imports being automatically removed
in abecc97.
  • Loading branch information
anishathalye committed Dec 28, 2024
1 parent abecc97 commit b8891c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/dotbot_plugin_issue_357.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit b8891c5

Please sign in to comment.