[docs]classConstants:""" Constants class for managing magic values and configuration parameters in ObjWatch project. """# Target processing related constantsMAX_TARGETS_DISPLAY=8# Maximum number of targets to display before truncation# Sequence formatting related constantsMAX_SEQUENCE_ELEMENTS=3# Maximum number of elements to display when formatting sequences# Logging related constantsLOG_INDENT_LEVEL=2# Default indentation level for JSON serialization# Log element types# Define types that are directly loggableLOG_ELEMENT_TYPES=(bool,int,float,str,NoneType,FunctionType,Enum,)# Log sequence types# Define sequence types for loggingLOG_SEQUENCE_TYPES=(list,set,dict,tuple)