josh-fell commented on code in PR #24236:
URL: https://github.com/apache/airflow/pull/24236#discussion_r896856289
##########
dev/breeze/src/airflow_breeze/utils/ci_group.py:
##########
@@ -22,7 +22,7 @@
@contextmanager
-def ci_group(title: str, enabled: bool = True):
+def ci_group(title: str, enabled: bool = True, message_type: str = "[info]"):
Review Comment:
Should the arg passed just be the type name rather than also require the
square brackets?
```python
def ci_group(title: str, enabled: bool = True, message_type: str = "info"):
....
# Handle print formatting later
get_console().print(f"[{message_type}]{title}[/]")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]