stable/tests/strategy/strats/failing_strategy.py

10 lines
202 B
Python
Raw Normal View History

2020-02-15 17:43:11 +00:00
# The strategy which fails to load due to non-existent dependency
2020-02-15 02:17:34 +00:00
import nonexiting_module # noqa
2020-02-15 17:43:11 +00:00
from freqtrade.strategy.interface import IStrategy
2020-02-15 02:17:34 +00:00
2021-08-26 05:04:33 +00:00
class TestStrategyLegacyV1(IStrategy):
2020-02-15 17:43:11 +00:00
pass