get_instance_of¶
-
lsst.utils.introspection.
get_instance_of
(typeOrName: Union[Type, str], *args, **kwargs) → Any¶ Given the type name or a type, instantiate an object of that type.
If a type name is given, an attempt will be made to import the type.
Parameters: Returns: - instance :
object
Instance of the requested type, instantiated with the provided parameters.
Raises: - TypeError
Raised if a module is imported rather than a type.
- instance :