Skip to content

Commit c61a774

Browse files
authored
fix: Remove resolver() from schema.Table (#15)
Co-authored-by: Kemal Hadimli <[email protected]>
1 parent a50f0e7 commit c61a774

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

cloudquery/sdk/schema/table.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ def __init__(
3636
def multiplex(self, client) -> List[Table]:
3737
raise [client]
3838

39-
def resolver(self, client: Client, parent=None) -> Generator[Any]:
40-
raise NotImplementedError()
41-
4239
def index_column(self, column_name: str) -> int:
4340
for i, column in enumerate(self.columns):
4441
if column.name == column_name:

0 commit comments

Comments
 (0)