stable/tests/strategy/failing_strategy.py
2020-02-15 20:43:11 +03: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