stable/tests/strategy/strats/failing_strategy.py
2021-08-26 07:04:33 +02:00

10 lines
202 B
Python

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