Skip to content

Call __init__ from base Exception class in custom exceptions #81

Call __init__ from base Exception class in custom exceptions

Call __init__ from base Exception class in custom exceptions #81

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
container:
image: python:2.7.18-buster
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --max-line-length 120 --disable=R,missing-docstring,too-many-lines $(git ls-files '*.py')