Skip to content

Commit c7aa71f

Browse files
committed
Working through more ruff suggestions
1 parent 04d91f0 commit c7aa71f

File tree

8 files changed

+206
-187
lines changed

8 files changed

+206
-187
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ max-doc-length = 88
7777

7878
# Disable docstring checking for these directories
7979
[tool.ruff.lint.per-file-ignores]
80-
"python/tests/*" = ["ANN", "ARG", "D", "S101", "SLF", "PD", "PLR2004", "RUF015", "S608", "PLR0913"]
80+
"python/tests/*" = ["ANN", "ARG", "D", "S101", "SLF", "PD", "PLR2004", "PT011", "RUF015", "S608", "PLR0913"]
8181
"examples/*" = ["D", "W505"]
8282
"dev/*" = ["D"]
8383
"benchmarks/*" = ["D", "F"]

python/tests/test_aggregation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@ def test_aggregate_100(df_aggregate_100, name, expr, expected):
299299
]
300300

301301

302-
@pytest.mark.parametrize(("name","expr","result"), data_test_bitwise_and_boolean_functions)
302+
@pytest.mark.parametrize(
303+
("name", "expr", "result"), data_test_bitwise_and_boolean_functions
304+
)
303305
def test_bit_and_bool_fns(df, name, expr, result):
304306
df = df.aggregate([], [expr.alias(name)])
305307

0 commit comments

Comments
 (0)