Skip to content

Commit

Permalink
can't actually make that change
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Dec 6, 2024
1 parent f5eb3f8 commit 0113bd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/databricks/relation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from collections.abc import Iterable
from dataclasses import dataclass, field
from typing import Any, Optional
from typing import Any, Optional, Type

from dbt_common.dataclass_schema import StrEnum
from dbt_common.exceptions import DbtRuntimeError
Expand Down Expand Up @@ -131,7 +131,7 @@ def matches(
return match

@classproperty
def get_relation_type(cls) -> type[DatabricksRelationType]: # type: ignore
def get_relation_type(cls) -> Type[DatabricksRelationType]: # noqa
return DatabricksRelationType

def information_schema(self, view_name: Optional[str] = None) -> InformationSchema:
Expand Down

0 comments on commit 0113bd9

Please sign in to comment.