Skip to content

Commit 8062d29

Browse files
author
Nate Parsons
committed
lint-fix updates
1 parent 933179a commit 8062d29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

autonormalize/tests/test_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_ft_mock_customer():
1414
entityset = an.auto_entityset(df, name="Customer Transactions", time_index='transaction_time')
1515

1616
assert set(entityset['transaction_id'].df.columns) == set(['transaction_id', 'session_id', 'transaction_time',
17-
'product_id', 'amount'])
17+
'product_id', 'amount'])
1818

1919
assert set(entityset['product_id'].df.columns) == set(['product_id', 'brand'])
2020

autonormalize/tests/test_normalize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def test_normalize_dataframe():
123123
assert len(new_dfs) == 3
124124

125125
dic_one = {'team': ['Red', 'Red', 'Red', 'Orange', 'Orange', 'Yellow',
126-
'Yellow', 'Green', 'Green', 'Blue'],
126+
'Yellow', 'Green', 'Green', 'Blue'],
127127
'jersey_num': [1, 2, 3, 1, 2, 1, 5, 8, 2, 2],
128128
'player_name': ['A', 'B', 'C', 'D', 'A', 'E', 'B', 'A', 'G', 'H']}
129129

0 commit comments

Comments
 (0)