Skip to content

Commit

Permalink
Merge branch 'master' into erin/dev-57-lesson-5
Browse files Browse the repository at this point in the history
  • Loading branch information
erinkcochran87 committed Feb 21, 2024
2 parents d87f4a7 + 1e658bf commit 90d4238
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,19 @@ class TableMetadataValue(
Args:
records (TableRecord): The data as a list of records (i.e. rows).
schema (Optional[TableSchema]): A schema for the table.
Example:
.. code-block:: python
from dagster import TableMetadataValue, TableRecord
TableMetadataValue(
schema=None,
records=[
TableRecord({"column1": 5, "column2": "x"}),
TableRecord({"column1": 7, "column2": "y"}),
]
)
"""

@public
Expand Down

0 comments on commit 90d4238

Please sign in to comment.