Skip to content

add missing call to va_end() for copied va_list #28

add missing call to va_end() for copied va_list

add missing call to va_end() for copied va_list #28

Workflow file for this run

name: Lint Python
on:
pull_request:
paths: ['contrib/**']
push:
paths: ['contrib/**']
jobs:
lint_python:
runs-on: ubuntu-latest
defaults:
run:
working-directory: contrib
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install codespell flake8 isort
- run: codespell --quiet-level=2 || true
- run: flake8 --count --show-source --statistics
- run: isort --check-only --profile black .