forked from ouster-lidar/ouster-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmypy.ini
More file actions
31 lines (23 loc) · 658 Bytes
/
mypy.ini
File metadata and controls
31 lines (23 loc) · 658 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
[mypy]
# To avoid "Source file found twice under different module names" when using src
# layout + namespace packages. See:
# https://mypy.readthedocs.io/en/stable/running_mypy.html#mapping-file-paths-to-modules
mypy_path=src
namespace_packages = True
explicit_package_bases = True
[mypy-open3d.*]
ignore_missing_imports = True
[mypy-laspy.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-requests.*]
ignore_missing_imports = True
[mypy-cpuinfo]
ignore_missing_imports = True
[mypy-threadpoolctl]
ignore_missing_imports = True
[mypy-ruamel.*]
ignore_missing_imports = True