Skip to content

remove non usable input in ftns and add **kwargs #26

remove non usable input in ftns and add **kwargs

remove non usable input in ftns and add **kwargs #26

Workflow file for this run

name: Lint
on:
push:
paths:
- '**.py'
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
flake8: true
flake8_args: "--ignore=E266,E501,W503"