Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Remove resolver() from schema.Table
As the signature isn't correct.
  • Loading branch information
disq committed Aug 1, 2023
commit 7d52753da1c15f1e04de43d5dde8ef26549c7cd3
3 changes: 0 additions & 3 deletions cloudquery/sdk/schema/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down