Skip to content

Commit c8f3c60

Browse files
FIX: Remove incorrect Black version pin
CI uses unpinned black, not 26.1.0. Also add --line-length=100 to match CI command.
1 parent 0895b8d commit c8f3c60

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/copilot-instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ python -m pytest tests/test_001_globals.py -v # Basic functionality
132132
### Linting and Code Quality
133133

134134
```bash
135-
# Python formatting (use black 26.1.0 to match CI)
136-
pip install black==26.1.0
137-
black --check .
135+
# Python formatting
136+
pip install black
137+
black --check --line-length=100 mssql_python/ tests/
138138

139139
# C++ formatting
140140
clang-format -style=file -i mssql_python/pybind/*.cpp mssql_python/pybind/*.h

0 commit comments

Comments
 (0)