Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurinehate committed Mar 5, 2025
1 parent e2e42e6 commit bbd80f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def generate_lineage(
)

def find_upstream_share(
self, share: Union[InboundDatashare | PartialInboundDatashare]
self, share: Union[InboundDatashare, PartialInboundDatashare]
) -> Optional[OutboundSharePlatformResource]:
if not self.graph:
self.report.warning(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def is_shared_database(self) -> bool:
# we may receive only partial information about inbound share
def get_inbound_share(
self,
) -> Optional[Union[InboundDatashare | PartialInboundDatashare]]:
) -> Optional[Union[InboundDatashare, PartialInboundDatashare]]:
if not self.is_shared_database or not self.options:
return None

Expand Down

0 comments on commit bbd80f9

Please sign in to comment.