Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pritishpai committed May 1, 2024
1 parent 53c0967 commit a41542d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/databricks/labs/ucx/account/aggregate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import collections
import json
import logging
from dataclasses import dataclass
from functools import cached_property
Expand Down Expand Up @@ -56,4 +57,4 @@ def aggregate_report(self):
compatibility = (1 - incompatible_objects / all_objects if all_objects > 0 else 0) * 100
logger.info(f"UC compatibility: {compatibility}% ({incompatible_objects}/{all_objects})")

Check warning on line 58 in src/databricks/labs/ucx/account/aggregate.py

View check run for this annotation

Codecov / codecov/patch

src/databricks/labs/ucx/account/aggregate.py#L56-L58

Added lines #L56 - L58 were not covered by tests
for failure, objects in failures.items():
logger.info(f"{failure}: {len(objects)} objects")
logger.info(f"{failure}: {len(objects)} objects")

Check warning on line 60 in src/databricks/labs/ucx/account/aggregate.py

View check run for this annotation

Codecov / codecov/patch

src/databricks/labs/ucx/account/aggregate.py#L60

Added line #L60 was not covered by tests
4 changes: 0 additions & 4 deletions src/databricks/labs/ucx/account/workspaces.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import collections
import json
import logging
from dataclasses import dataclass
from functools import cached_property
from typing import ClassVar

from databricks.labs.blueprint.installation import Installation
Expand Down

0 comments on commit a41542d

Please sign in to comment.