Skip to content

Commit e83f92b

Browse files
committed
Fix pre-commit
1 parent 05feb92 commit e83f92b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
- name: Check formatting (black)
114114
working-directory: ladybug/tools/python_api
115115
run: |
116-
uv pip install black
116+
uv pip install black==26.3.0
117117
.venv/bin/black --check src_py test
118118
119119
- name: Run ruff check
@@ -177,7 +177,7 @@ jobs:
177177
- name: Check formatting (black)
178178
working-directory: ladybug/tools/python_api
179179
run: |
180-
uv pip install black
180+
uv pip install black==26.3.0
181181
.venv/bin/black --check src_py test
182182
183183
- name: Run ruff check

src_py/query_result.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,8 @@ def csr(self) -> CSRResult:
572572

573573
@dataclass(frozen=True)
574574
class CSRResult:
575+
"""Native CSR arrays returned by an Arrow query result."""
576+
575577
indptr: pa.Array
576578
indices: pa.Array
577579
edge_ids: pa.Array | None = None

0 commit comments

Comments
 (0)