Skip to content

Commit d7c81a7

Browse files
committed
CLN: Linting
1 parent 0aa30cd commit d7c81a7

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

dataframe_sql/tests/pandas_sql_functionality_test.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,8 +1165,9 @@ def test_count():
11651165
"""
11661166
my_frame = query("select count(day) from forest_fires")
11671167
pandas_frame = FOREST_FIRES.copy()
1168-
pandas_frame = pandas_frame[["month"]].count().to_frame("_col0").reset_index(
1169-
drop=True)
1168+
pandas_frame = (
1169+
pandas_frame[["month"]].count().to_frame("_col0").reset_index(drop=True)
1170+
)
11701171
tm.assert_frame_equal(pandas_frame, my_frame)
11711172

11721173

@@ -1177,6 +1178,7 @@ def test_count_star():
11771178
"""
11781179
my_frame = query("select count(*) from forest_fires")
11791180
pandas_frame = FOREST_FIRES.copy()
1180-
pandas_frame = pandas_frame[["month"]].count().to_frame("_col0").reset_index(
1181-
drop=True)
1182-
tm.assert_frame_equal(pandas_frame, my_frame)
1181+
pandas_frame = (
1182+
pandas_frame[["month"]].count().to_frame("_col0").reset_index(drop=True)
1183+
)
1184+
tm.assert_frame_equal(pandas_frame, my_frame)

0 commit comments

Comments
 (0)