Skip to content

Commit

Permalink
data input type changed
Browse files Browse the repository at this point in the history
  • Loading branch information
vishallmaurya committed Aug 18, 2024
1 parent 80f82ab commit 101dc65
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/test_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_example():
csv_path = os.path.join('tests', 'sample_data', 'sample.csv')

# Load data
df = pd.read_csv(csv_path)
df = pd.read_csv(csv_path, encoding='ISO-8859-1')
X = df.drop(['price'], axis=1)
y = df['price']

Expand Down
2 changes: 1 addition & 1 deletion tests/test_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test():
csv_path = os.path.join('tests', 'sample_data', 'sample.csv')

# Load data
df = pd.read_csv(csv_path)
df = pd.read_csv(csv_path, encoding='ISO-8859-1')
X = df.drop(['price'], axis=1)
y = df['price']

Expand Down
2 changes: 1 addition & 1 deletion tests/test_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test():
csv_path = os.path.join('tests', 'sample_data', 'sample.csv')

# Load data
df = pd.read_csv(csv_path)
df = pd.read_csv(csv_path, encoding='ISO-8859-1')

X = df.drop(['price'], axis=1)
y = df['price']
Expand Down
2 changes: 1 addition & 1 deletion tests/test_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test():
csv_path = os.path.join('tests', 'sample_data', 'sample.csv')

# Load data
df = pd.read_csv(csv_path)
df = pd.read_csv(csv_path,encoding='ISO-8859-1')

X = df.drop(['price'], axis=1)
y = df['price']
Expand Down
2 changes: 1 addition & 1 deletion tests/test_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test():
csv_path = os.path.join('tests', 'sample_data', 'sample.csv')

# Load data
df = pd.read_csv(csv_path)
df = pd.read_csv(csv_path, encoding='ISO-8859-1')

X = df.drop(['price'], axis=1)
y = df['price']
Expand Down
2 changes: 1 addition & 1 deletion tests/test_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test():
csv_path = os.path.join('tests', 'sample_data', 'sample.csv')

# Load data
df = pd.read_csv(csv_path)
df = pd.read_csv(csv_path, encoding='ISO-8859-1')
X = df.drop(['price'], axis=1)
y = df['price']

Expand Down

0 comments on commit 101dc65

Please sign in to comment.