File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ disallow_untyped_defs = True
2121[mypy-scriptworker.constants]
2222check_untyped_defs = True
2323disallow_untyped_defs = True
24+ # untyped_calls because of immutabledict==1.3.0
25+ disallow_untyped_calls = False
2426
2527[mypy-scriptworker.context]
2628check_untyped_defs = True
Original file line number Diff line number Diff line change 3131#
3232# When adding new complex config, make sure all `list`s are `tuple`s, and all
3333# `dict`s are `immutabledict`s! (This should get caught by config tests.)
34- DEFAULT_CONFIG = immutabledict (
34+ DEFAULT_CONFIG : immutabledict [ str , Any ] = immutabledict (
3535 {
3636 "taskcluster_root_url" : os .environ .get ("TASKCLUSTER_ROOT_URL" , "https://firefox-ci-tc.services.mozilla.com/" ),
3737 # Worker identification
You can’t perform that action at this time.
0 commit comments