Skip to content

fix: translation missing arg and en.json #1

fix: translation missing arg and en.json

fix: translation missing arg and en.json #1

Workflow file for this run

name: Lint Code with Black
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9" # Spécifie la version de Python que tu utilises
- name: Install Black
run: |
python -m pip install --upgrade pip
pip install black==24.10.0
- name: Run Black
run: black --check --exclude "backend/custom_app.py" ./backend