(
cls, entity, where_criteria, include_aliases, propagate_to_loaders
)
| 1433 | |
| 1434 | @classmethod |
| 1435 | def _unreduce( |
| 1436 | cls, entity, where_criteria, include_aliases, propagate_to_loaders |
| 1437 | ): |
| 1438 | return LoaderCriteriaOption( |
| 1439 | entity, |
| 1440 | where_criteria, |
| 1441 | include_aliases=include_aliases, |
| 1442 | propagate_to_loaders=propagate_to_loaders, |
| 1443 | ) |
| 1444 | |
| 1445 | def __reduce__(self): |
| 1446 | return ( |
nothing calls this directly
no test coverage detected