ArgsDict ==================================== .. py:class:: petpal.pipelines.steps_base.ArgsDict Bases: :py:obj:`dict` A specialized subclass of Python's built-in `dict` that provides a customized string representation. :ivar None, since ArgsDict inherits directly from dict.: Initialize self. See help(type(self)) for accurate signature. .. py:method:: __str__() Returns a formatted string representation of the dictionary. The string output will list each key-value pair on a new line with indentation to improve readability. :returns: *str* -- A string containing the formatted key-value pairs, indented for clarity.