ArgsDict#

class petpal.pipelines.steps_base.ArgsDict#

Bases: dict

A specialized subclass of Python’s built-in dict that provides a customized string representation.

Variables:

dict. (None, since ArgsDict inherits directly from)

Initialize self. See help(type(self)) for accurate signature.

__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.