Skip to content

Commit

Permalink
Merge branch 'dev' into dev-format
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Jul 28, 2021
2 parents 00ea31e + 40fa6b5 commit 4987afa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.8'
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy==0.800
pip install .
pip install -r requirements-dev.txt
pip install mypy==0.910 types-toml types-requests
- name: Run mypy check
run: mypy -p stellar_sdk

Expand All @@ -80,7 +80,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.7'
python-version: '3.9'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/sep/mnemonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, language: Union[str, Language] = Language.ENGLISH) -> None:

super().__init__(language)

def to_seed(self, mnemonic: str, passphrase: str = "", index: int = 0) -> bytes:
def to_seed(self, mnemonic: str, passphrase: str = "", index: int = 0) -> bytes: # type: ignore[override]
if not self.check(mnemonic):
raise ValueError(
"Invalid mnemonic, please check if the mnemonic is correct, "
Expand Down

0 comments on commit 4987afa

Please sign in to comment.