-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmypy.ini
More file actions
32 lines (26 loc) · 752 Bytes
/
Copy pathmypy.ini
File metadata and controls
32 lines (26 loc) · 752 Bytes
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
30
31
32
[mypy]
# Ensure consistent behavior across platforms
python_version = 3.9
platform = linux
ignore_missing_imports = False
strict = False
warn_return_any = False
warn_unused_configs = True
disallow_untyped_defs = False
exclude = node_modules
# Force consistent stub resolution
no_site_packages = False
# Specific modules where we need to ignore missing imports for all platforms
[mypy-psutil]
ignore_missing_imports = True
[mypy-psutil.*]
ignore_missing_imports = True
[mypy-tflite_runtime.*]
ignore_missing_imports = True
[mypy-picamera2.*]
ignore_missing_imports = True
# AI/ML optional dependencies (may not be available in all environments)
[mypy-ai_edge_litert.*]
ignore_missing_imports = True
[mypy-libcamera.*]
ignore_missing_imports = True