stable/tests/strategy/strats/failing_strategy.py
2020-02-18 20:12:10 +01:00

10 lines
200 B
Python

# The strategy which fails to load due to non-existent dependency
import nonexiting_module # noqa
from freqtrade.strategy.interface import IStrategy
class TestStrategyLegacy(IStrategy):
pass