Helps `self.from_list()` and `self.to_list()` identify which classes to use for batch collation and un-collation.
(cls)
| 96 | |
| 97 | @classmethod |
| 98 | def get_base_class(cls) -> type: |
| 99 | """Helps `self.from_list()` and `self.to_list()` identify which |
| 100 | classes to use for batch collation and un-collation. |
| 101 | """ |
| 102 | return InstanceData |
| 103 | |
| 104 | @classmethod |
| 105 | def get_batch_class(cls) -> type: |
nothing calls this directly
no outgoing calls
no test coverage detected