Skip to content

Add missing newlines to improve code readability #15

Add missing newlines to improve code readability

Add missing newlines to improve code readability #15

Workflow file for this run

name: Format Check
on: [push, pull_request]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install Black
run: pip install black
- name: Run Black
run: black --check .