Casper Weiss Bang
11/17/2022, 4:46 AMTableRecord
in the docs:
https://docs.dagster.io/_apidocs/ops#dagster.MetadataValue.table
It says the signature of a TableRecord is as follows:
TableRecord(code="invalid-data-type", row=2, col="name"}]
Which obviously isn't correct python syntax. It ought to be:
TableRecord(code="invalid-data-type", row=2, col="name")
Upon looking at the actual source code
However it still doesn't seem to work. Not sure what the exact bug is, but I get a:
TypeError: TableRecord.__new__() takes 1 positional argument but 2 were given
Fraser Marlow
11/17/2022, 3:00 PMCasper Weiss Bang
11/17/2022, 3:14 PMWill Tyree
01/19/2023, 9:00 PMCasper Weiss Bang
01/20/2023, 9:57 AMDaniel Gafni
01/25/2023, 5:01 PM