Skip to content

fix: Properly spell __all__ #53

fix: Properly spell __all__

fix: Properly spell __all__ #53

Workflow file for this run

name: lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
flake8-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 src/ tests/ --exclude tests/data --count --ignore=W503 --max-line-length=127 --statistics