Remove binary script - allow None arguemnts

This commit is contained in:
Matthias
2019-05-25 15:07:52 +02:00
parent 7406edfd8f
commit 17d614c66a
3 changed files with 3 additions and 12 deletions

View File

@@ -6,9 +6,7 @@ To launch Freqtrade as a module
> python -m freqtrade (with Python >= 3.6)
"""
import sys
from freqtrade import main
if __name__ == '__main__':
main.main(sys.argv[1:])
main.main()