This documentation was generated with AI assistance and is still being audited. Some, or potentially a lot, of this information may be inaccurate. Learn more.
defpretty_print_cty(value:CtyValue[Any])->None:"""Pretty print a CTY value to stdout. Args: value: CTY value to print Example: >>> from pyvider.cty import CtyString >>> val = CtyString().validate("test") >>> pretty_print_cty(val) "test" """print(_pretty_print_cty_recursive(value,0))