Skip to content

Remove comment

Remove comment #222

Workflow file for this run

name: Lint
on: [push]
jobs:
ruff:
runs-on: ubuntu-latest
name: Lint with Ruff
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Ruff
run: pip install ruff
- name: Run Ruff
run: ruff check --output-format=github .