10 lines
202 B
Python
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
|