chore: Update pre-commit packages (#23173)

This commit is contained in:
Hugh A. Miles II
2023-03-13 17:05:13 -06:00
committed by GitHub
parent 9ae81b7c33
commit b820eb8235
87 changed files with 112 additions and 218 deletions

View File

@@ -86,7 +86,13 @@ def test_flat_should_drop_index_level():
df = pd.DataFrame(index=index, columns=columns, data=1)
# drop level by index
assert pp.flatten(df.copy(), drop_levels=(0, 1,)).equals(
assert pp.flatten(
df.copy(),
drop_levels=(
0,
1,
),
).equals(
pd.DataFrame(
{
"__timestamp": index,