SIENTIAPDE-1231

Enhance README and code documentation for clarity and structure

- Added a comprehensive Table of Contents to the README for easier navigation.
- Introduced a new section on Code Quality & Validation, detailing the validation workflow and tools used.
- Improved descriptions and consistency in docstrings across various modules, including metrics, formatters, and MongoDB activities.
- Clarified function return types and arguments in the MongoDB and TemporalManager classes for better understanding.
This commit is contained in:
vitor-aignosi
2025-10-16 10:33:58 -03:00
parent c9f83186c8
commit 9031b4c88f
6 changed files with 164 additions and 61 deletions

View File

@@ -39,7 +39,7 @@ class EmailBuilder:
Returns:
str: The rendered template with parameters replaced.
"""
# Criar um template Jinja2
# Create a Jinja2 template from the provided string
template_obj = Template(template)
return template_obj.render(parameters)