Source code for orbit.utils.TypedObject
[docs]class TypedObject:
"""
Class. Object that has a type.
"""
def __init__(self, type_in="no type"):
"""
Constructor. Object that has a type.
"""
self.__type = type_in