Skip to content

update type hint

update type hint #5

Workflow file for this run

name: ci
on:
push:
paths:
- "**.py"
- .github/workflows/ci.yml
jobs:
linux:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install .[tests,lint]
- run: flake8
- run: mypy
- run: pytest