unpickle_lazyobject
Used to unpickle lazy objects. Just return its argument, which will be the wrapped object.
def unpickle_lazyobject(
wrapped: object
) - > object
Used to unpickle lazy objects. Just return its argument, which will be the wrapped object.
Parameters
| Name | Type | Description |
|---|---|---|
| wrapped | object | The evaluated object instance that was contained within the lazy wrapper |
Returns
| Type | Description |
|---|---|
object | The underlying wrapped object that was previously lazily evaluated |