Skip to content

Fix wrong variable name #228

Fix wrong variable name

Fix wrong variable name #228

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: python -m pip install tox
- name: Style
run: tox -v -e lint
- name: Typing
run: tox -v -e typing