From 997bffc286701eeaf1d7dcbdcc8bc7a3fed8c202 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Wed, 27 Dec 2023 10:52:08 +0100 Subject: [PATCH] add IRecordsTable to interfaces list --- table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/table.py b/table.py index 4305e1c..236a0fa 100644 --- a/table.py +++ b/table.py @@ -127,7 +127,7 @@ class DataTable(AdapterBase): return [r for r in self.dataAsRecords() if r[column] == value] -TypeInterfaceSourceList.typeInterfaces += (IDataTable,) +TypeInterfaceSourceList.typeInterfaces += (IDataTable, IRecordsTable) class DataTableSchemaFactory(SchemaFactory):