Skip to content

Commit 6625136

Browse files
committed
fix typo
1 parent 8521f16 commit 6625136

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

skrules/datasets/credit_data.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,17 @@
1818

1919
import pandas as pd
2020
import numpy as np
21+
<<<<<<< HEAD
2122
from sklearn.datasets.base import get_data_home, Bunch
23+
=======
24+
25+
try:
26+
from sklearn.datasets.base import get_data_home, Bunch
27+
except ModuleNotFoundError:
28+
from sklearn.datasets import get_data_home
29+
from sklearn.utils import Bunch
30+
31+
>>>>>>> aa9588c... fix typo
2232
from sklearn.datasets.base import _fetch_remote, RemoteFileMetadata
2333
from os.path import exists, join
2434

0 commit comments

Comments
 (0)