12 lines
238 B
Python
Executable File
12 lines
238 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import warnings
|
|
|
|
from freqtrade.main import main
|
|
|
|
warnings.warn(
|
|
"Deprecated - To continue to run the bot like this, please run `pip install -e .` again.",
|
|
DeprecationWarning)
|
|
main(sys.argv[1:])
|