Skip to content

Update README.md

Update README.md #13

Workflow file for this run

name: Black
on:
push:
branches: [main]
jobs:
format:
name: Format code with Black
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.8
- name: Install dependencies
run: pip install black
- name: Format code
run: black .