10 lines
369 B
Python
10 lines
369 B
Python
"""
|
|
This module provides formatting functions for model data for display or output.
|
|
|
|
It includes functions to format key facts in a consistent, readable way for
|
|
presentation to users and other parts of the system.
|
|
"""
|
|
|
|
from ra_aid.model_formatters.key_facts_formatter import format_key_fact, format_key_facts_dict
|
|
|
|
__all__ = ["format_key_fact", "format_key_facts_dict"] |