Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
asikowitz committed Oct 6, 2023
1 parent ab6869e commit 37b207b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"""
import dataclasses
import logging
from concurrent.futures import ThreadPoolExecutor, wait
from datetime import datetime, timezone
from typing import Any, Dict, Iterable, List, Optional, Union
from unittest.mock import patch
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import re
import time
from concurrent.futures import ThreadPoolExecutor, wait
from concurrent.futures import ThreadPoolExecutor
from datetime import timedelta
from typing import Dict, Iterable, List, Optional, Set, Union
from urllib.parse import urljoin
Expand Down Expand Up @@ -394,7 +394,7 @@ def process_table(self, table: Table, schema: Schema) -> Iterable[MetadataWorkUn
)
]

def ingest_lineage(self, table: Table) -> Optional[MetadataWorkUnit]:
def ingest_lineage(self, table: Table) -> Optional[UpstreamLineageClass]:
if self.config.include_table_lineage:
self.unity_catalog_api_proxy.table_lineage(
table, include_entity_lineage=self.config.include_notebooks
Expand Down

0 comments on commit 37b207b

Please sign in to comment.