Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
nfx committed Oct 24, 2024
1 parent fbdee00 commit 144451e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/databricks/labs/ucx/hive_metastore/ownership.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _grants_snapshot(self):


class TableOwnershipGrantLoader:
def __init__(self, tables_crawler: TablesCrawler, table_ownership: TableOwnership) -> None:
def __init__(self, tables_crawler: TablesCrawler, table_ownership: TableOwnership):
self._tables_crawler = tables_crawler
self._table_ownership = table_ownership

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/progress/test_ownership.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from databricks.labs.ucx.hive_metastore.tables import Table, TablesCrawler


def test_table_ownership_grants():
def test_table_ownership_grants() -> None:
tables_crawler = create_autospec(TablesCrawler)
tables_crawler.snapshot.return_value = [
Table(
Expand Down

0 comments on commit 144451e

Please sign in to comment.