Skip to content

Commit 0432a8c

Browse files
cburgdorfPeppece
authored andcommitted
Upgrade to latest mypy
1 parent dd44fd4 commit 0432a8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eth/_utils/datatypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def configure(cls: Type[T],
116116
f"instance: {sub_cls!r}"
117117
)
118118

119-
configured_sub_cls = sub_cls.configure(**sub_overrides)
119+
configured_sub_cls = sub_cls.configure(**sub_overrides) # type: ignore
120120
local_overrides = assoc(local_overrides, key, configured_sub_cls)
121121

122122
return type(__name__, (cls,), local_overrides)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
'lint': [
4242
"flake8==3.8.2",
4343
"flake8-bugbear==20.1.4",
44-
"mypy==0.750",
44+
"mypy==0.782",
4545
],
4646
'benchmark': [
4747
"termcolor>=1.1.0,<2.0.0",

0 commit comments

Comments
 (0)