Skip to content

Commit

Permalink
Better mypy integration.
Browse files Browse the repository at this point in the history
Thanks, @ekilmer.
  • Loading branch information
smoelius committed Jan 6, 2020
1 parent 6df79e6 commit 1b50ce0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion manticore/platforms/evm_world_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from abc import ABC, abstractmethod
from typing import Dict, Optional, Set, Union
from urllib.parse import ParseResult, urlparse
from web3 import Web3 # type: ignore
from web3 import Web3
from ..exceptions import EthereumError
from ..core.smtlib import Array, BitVec, BitVecConstant, BitVecITE, BitVecZeroExtend, ConstraintSet

Expand Down
3 changes: 3 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ ignore_missing_imports = True

[mypy-wasm.*]
ignore_missing_imports = True

[mypy-web3.*]
ignore_missing_imports = True

0 comments on commit 1b50ce0

Please sign in to comment.