* Modernize research graph metadata for LangGraph v1 * Update src/biz_bud/core/langgraph/graph_builder.py Co-authored-by: qodo-merge-pro[bot] <151058649+qodo-merge-pro[bot]@users.noreply.github.com> --------- Co-authored-by: qodo-merge-pro[bot] <151058649+qodo-merge-pro[bot]@users.noreply.github.com>
23 lines
650 B
Python
23 lines
650 B
Python
"""Minimal table implementation for :mod:`rich.table`."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any, List
|
|
|
|
|
|
class Table:
|
|
"""Simplified stand-in for :class:`rich.table.Table`."""
|
|
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None: # pragma: no cover
|
|
self.columns: List[str] = []
|
|
self.rows: List[List[str]] = []
|
|
|
|
def add_column(self, header: str, *args: Any, **kwargs: Any) -> None: # pragma: no cover
|
|
self.columns.append(header)
|
|
|
|
def add_row(self, *values: Any, **kwargs: Any) -> None: # pragma: no cover
|
|
self.rows.append([str(value) for value in values])
|
|
|
|
|
|
__all__ = ["Table"]
|