mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
10 lines
200 B
Python
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
|