Update black.yml

This commit is contained in:
Yousef Abu Shanab 2025-04-10 02:29:19 -07:00 committed by GitHub
parent a3e2bca88b
commit ae48b76708
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,8 +13,12 @@ jobs:
- name: Install dependencies
run: |
python -m venv .venv
source .vevn/bin/activate
python -m pip install --upgrade pip
pip install black
- name: Check code format with black
run: black --check .
run: |
source .vevn/bin/activate
black --check .