Skip to content

Commit

Permalink
Run mypy as github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
dowlandaiello committed Apr 12, 2024
1 parent 84361fc commit 6c59c9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ jobs:
run: pip install -r requirements.txt
- name: Run unit tests
run: python -m pytest tests
- name: Check mypy
run: mypy src --install-types
2 changes: 1 addition & 1 deletion src/contracts/pool/astroport.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from cosmpy.aerial.client import LedgerClient # type: ignore
from typing import Any, cast, Callable, Union, List
from functools import cached_property
from grpc._channel import _InactiveRpcError
from grpc._channel import _InactiveRpcError # type: ignore


class Token:
Expand Down

0 comments on commit 6c59c9b

Please sign in to comment.