Fix regression test
This test was broken due to unused imports being automatically removed
in abecc97bad
.
This commit is contained in:
parent
abecc97bad
commit
b8891c5fb7
1 changed files with 5 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue