mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
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
|