Skip to content

Merge pull request #496 from Viveksati5143/Viveksati5143-patch-2 #189

Merge pull request #496 from Viveksati5143/Viveksati5143-patch-2

Merge pull request #496 from Viveksati5143/Viveksati5143-patch-2 #189

Workflow file for this run

name: Linting with black
on:
push:
pull_request:
jobs:
black-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Format code with black
run: |
pip install black
black . --exclude "main.py"