format_info#

ansys.mapdl.core.cli.check.format_info(data, style=<class 'str'>)#

Render the output of check() as a human-readable report.

Parameters:
datadict

Nested dictionary as returned by check().

stylecallable(), default: str

Callable applied to every section title, used to highlight them. The default leaves the titles unchanged.

Returns:
str

Multi-line report ready to be printed.

Return type:

str

Examples

Render a report without any highlighting:

>>> from ansys.mapdl.core.cli.check import check, format_info
>>> print(format_info(check()))