Skip to content

Commit 8682c36

Browse files
author
Mike Phung
committed
TST GH27994 Apply black code formatting.
1 parent be3bd20 commit 8682c36

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/tests/frame/methods/test_drop.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,7 @@ def test_drop_non_empty_list(self, index, drop_labels):
272272
@pytest.mark.parametrize("empty_listlike", [[], DatetimeIndex([])])
273273
def test_drop_empty_listlike_non_unique_datetime_index(self, empty_listlike):
274274
# GH#27994
275-
data = {
276-
"column_a": [5, 10],
277-
"column_b": ["one", "two"]
278-
}
275+
data = {"column_a": [5, 10], "column_b": ["one", "two"]}
279276
index = [Timestamp("2021-01-01"), Timestamp("2021-01-01")]
280277
df = DataFrame(data, index=index)
281278

0 commit comments

Comments
 (0)