Skip to content

Minor change to fix a potential bug. #88

Minor change to fix a potential bug.

Minor change to fix a potential bug. #88

Workflow file for this run

name: pep8
on:
push:
branches:
- stable
pull_request:
branches:
- stable
jobs:
flake8:
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.11
- name: Install flake8
run: pip install flake8
- name: Check PEP8 compliance
run: flake8 . --count --ignore=E501