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