Skip to content

Commit 6f51947

Browse files
committed
fix format
1 parent a385219 commit 6f51947

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

bigframes/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ def __delitem__(self, key: str):
891891

892892
def __setitem__(
893893
self,
894-
key: str | list[str] | pandas.Index,
894+
key: str | list[str] | pandas.Index,
895895
value: SingleItemValue | MultiItemValue,
896896
):
897897
if isinstance(key, (list, pandas.Index)):

tests/system/small/test_dataframe.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,8 +1198,10 @@ def test_assign_new_column_w_setitem_list_error(scalars_dfs):
11981198
["new_col", "new_col_too"], [1, 2], id="sequence_to_full_new_column"
11991199
),
12001200
pytest.param(
1201-
pd.Index(("new_col", "new_col_too")), [1, 2], id="sequence_to_full_new_column_as_index"
1202-
)
1201+
pd.Index(("new_col", "new_col_too")),
1202+
[1, 2],
1203+
id="sequence_to_full_new_column_as_index",
1204+
),
12031205
],
12041206
)
12051207
def test_setitem_multicolumn_with_literals(scalars_dfs, key, value):

0 commit comments

Comments
 (0)