Skip to content

Commit

Permalink
remove unused lines
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Hoffman <hoffman.sc@gmail.com>
  • Loading branch information
hoffmansc committed Nov 24, 2021
1 parent 37f3345 commit 78a5c3d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion aif360/sklearn/datasets/meps_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def fetch_meps(panel, *, accept_terms=None, data_home=None, cache=True,
raise ValueError("only panels 19, 20, and 21 are currently supported.")

fname = 'h192' if panel == 21 else 'h181'
data_url = os.path.join(MEPS_URL, fname + 'ssp.zip')
cache_path = os.path.join(data_home or DATA_HOME_DEFAULT, fname + '.csv')
if cache and os.path.isfile(cache_path):
df = pd.read_csv(cache_path)
Expand Down
1 change: 0 additions & 1 deletion aif360/sklearn/datasets/openml_datasets.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os

import pandas as pd
from pandas.api.types import is_categorical_dtype
from sklearn.datasets import fetch_openml

from aif360.sklearn.datasets.utils import standardize_dataset
Expand Down

0 comments on commit 78a5c3d

Please sign in to comment.