Skip to content

removed an extra ')' #4352

removed an extra ')'

removed an extra ')' #4352

Workflow file for this run

name: mypy
on: [push]
jobs:
run-mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-python@v4
name: setup python
with:
python-version: 3.8
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
- name: run mypy
run: make run-local-mypy