Skip to content

Commit fd504a1

Browse files
committed
fix ruff errors
1 parent b6ce4ae commit fd504a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/tests/test_expr.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020

2121
import pyarrow as pa
2222
import pytest
23-
24-
# Avoid passing boolean literals positionally (FBT003). Use a named constant
25-
# so linters don't see a bare True/False literal in a function call.
26-
_TRUE = True
2723
from datafusion import (
2824
SessionContext,
2925
col,
@@ -57,6 +53,10 @@
5753
ensure_expr_list,
5854
)
5955

56+
# Avoid passing boolean literals positionally (FBT003). Use a named constant
57+
# so linters don't see a bare True/False literal in a function call.
58+
_TRUE = True
59+
6060

6161
@pytest.fixture
6262
def test_ctx():

0 commit comments

Comments
 (0)