| 243 | collection_class = cls.collection_class |
| 244 | |
| 245 | class Parent(cls.Basic): |
| 246 | children = association_proxy("_children", "name") |
| 247 | |
| 248 | def __init__(self, name): |
| 249 | self.name = name |
| 250 | |
| 251 | class Child(cls.Basic): |
| 252 | if collection_class and issubclass(collection_class, dict): |
nothing calls this directly
no test coverage detected