##// END OF EJS Templates
Fix listing of subcommands for "ipython profile" and "ipython history"....
Fix listing of subcommands for "ipython profile" and "ipython history". The previous code (likely going back to Py2) would print Must specify one of: dict_keys(['create', 'list', 'locate']) This PR fixes it to Must specify one of: 'create', 'list', 'locate'.

File last commit:

r28167:008777fa
r28743:d34e2fd0
Show More
mypy.yml
38 lines | 810 B | text/x-yaml | YamlLexer
name: Run MyPy
on:
push:
branches: [ main, 7.x]
pull_request:
branches: [ main, 7.x]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.x"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy pyflakes flake8 types-decorator
- name: Lint with mypy
run: |
set -e
mypy IPython
- name: Lint with pyflakes
run: |
set -e
flake8 IPython/core/magics/script.py
flake8 IPython/core/magics/packaging.py