from typing import Any
[docs]def select(to_select: Any, replace: bool = True) -> None:
"""Allow selection in standalone mode.
Raises:
NotImplementedError: This function is not implemented yet, will be in a future release.
"""
raise NotImplementedError('To be implemented in a future release.')
[docs]def get_display(object_: Any) -> str:
"""Get a displayable string for the given object.
Raises:
NotImplementedError: This function is not implemented yet, will be in a future release.
"""
raise NotImplementedError('To be implemented in a future release.')