[mypy-scipy.*]
ignore_missing_imports = True
+# Ignore errors from inability to import typing stubs for google.protobuf
+# package. The stubs exist but mypy gets awfully confused and insists it still
+# can't import it. After hours of debugging, I'm not 100% sure, but I think
+# this is because ceph (in this config file) disables namespace packages.
+#
+# If we ever really wanted to properly type-check with this module, a future
+# version of ceph could choose to enable namespace packages and fix the
+# bindings packages another way or we could split the mypy config between the
+# special ceph stuff and the more typical python stuff.
+[mypy-google.*]
+ignore_missing_imports = True
+
# Make volumes happy:
[mypy-StringIO]
ignore_missing_imports = True