| 270 | meta = {"allow_inheritance": True, "indexes": ["a"]} |
| 271 | |
| 272 | class B(Document): |
| 273 | b = StringField() |
| 274 | |
| 275 | meta = {"allow_inheritance": True, "indexes": ["b"]} |
| 276 | |
| 277 | class C(A, B): |
| 278 | pass |
nothing calls this directly
no test coverage detected