This commit is contained in:
crypto_rahino
2021-03-19 11:13:07 +02:00
parent 38b96f071f
commit df3c607e57
136 changed files with 13669 additions and 4 deletions

8
.env/bin/jupyter-nbconvert Executable file
View File

@@ -0,0 +1,8 @@
#!/home/yakov/PycharmProjects/freqtrade/.env/bin/python3.8
# -*- coding: utf-8 -*-
import re
import sys
from nbconvert.nbconvertapp import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())