Skip to content

Commit 43a2430

Browse files
biyachuevclaude
andcommitted
style: Format code with Black and fix CI workflows
- Fixed GitHub Actions workflows to use requirements-dev.txt - Formatted all Python files with Black to pass linting checks - Updated both lint.yml and tests.yml workflows 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent f94dcab commit 43a2430

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+4533
-3917
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install flake8 black mypy
24+
pip install -r requirements-dev.txt
2525
2626
- name: Run flake8
2727
run: |

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
python -m pip install --upgrade pip
3636
pip install -r requirements.txt
37-
pip install pytest pytest-cov python-docx
37+
pip install -r requirements-dev.txt
3838
3939
- name: Run tests
4040
run: |

0 commit comments

Comments
 (0)