-
Notifications
You must be signed in to change notification settings - Fork 7
/
mypy.ini
29 lines (26 loc) · 878 Bytes
/
mypy.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[mypy]
python_version = 3.7
follow_imports = silent
ignore_missing_imports = True
# All strict checks.
check_untyped_defs = True
disallow_incomplete_defs = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
disallow_untyped_defs = True
no_implicit_optional = True
strict_equality = True
warn_redundant_casts = True
warn_return_any = True
warn_unused_configs = True
warn_unused_ignores = True
exclude = build
[mypy-torch.nn.*]
; site-packages/torch/nn/quantized/functional.py:219: error: Type signature has too few arguments
follow_imports = skip
[mypy-azure.storage.blob.*]
; starting in azure 12.9.0:
; site-packages/azure/storage/blob/_serialize.py:129: error: Type signature has too many arguments
; site-packages/azure/storage/blob/_blob_client.py:1406: error: Type signature has too few arguments
follow_imports = skip