Fix TypeError Missing arg (#15698)

This commit is contained in:
Ayush Shah 2024-03-26 18:32:32 +05:30 committed by GitHub
parent 86a1130e41
commit 6039fe9462
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,7 +32,7 @@ class ExternalTableLineageMixin(ABC):
This mixin class is for deriving lineage between external table and container source/ This mixin class is for deriving lineage between external table and container source/
""" """
def yield_external_table_lineage(self) -> Iterable[AddLineageRequest]: def yield_external_table_lineage(self, _) -> Iterable[AddLineageRequest]:
""" """
Yield external table lineage Yield external table lineage
""" """