1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-10 22:36:55 +08:00

fix exit not found in ipython & fix re about provider_uri

This commit is contained in:
bxdd
2020-11-11 21:05:52 +08:00
committed by you-n-g
parent 3e0f8571d3
commit 4f86712579
3 changed files with 11 additions and 5 deletions

View File

@@ -5,6 +5,7 @@
from __future__ import division
from __future__ import print_function
import sys
import numpy as np
import pandas as pd
@@ -17,7 +18,7 @@ try:
except ImportError as err:
print(err)
print("Do not import qlib package in the repository directory")
exit(-1)
sys.exit(-1)
__all__ = (
"Ref",