diff --git a/cloudquery/sdk/schema/table.py b/cloudquery/sdk/schema/table.py index 785614f..d0b56ef 100644 --- a/cloudquery/sdk/schema/table.py +++ b/cloudquery/sdk/schema/table.py @@ -36,9 +36,6 @@ def __init__( def multiplex(self, client) -> List[Table]: raise [client] - def resolver(self, client: Client, parent=None) -> Generator[Any]: - raise NotImplementedError() - def index_column(self, column_name: str) -> int: for i, column in enumerate(self.columns): if column.name == column_name: