Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MatMoore committed Jan 18, 2024
1 parent ec62b5a commit 0a82461
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import logging
from abc import ABC, abstractmethod
from typing import Any

from ..entities import (
CatalogueMetadata,
Expand All @@ -27,7 +26,9 @@ class ReferencedEntityMissing(CatalogueError):

class BaseCatalogueClient(ABC):
@abstractmethod
def upsert_database_service(self, platform: str = "glue", display_name: str = "Data platform"): # type: ignore[override]
def upsert_database_service(
self, platform: str = "glue", display_name: str = "Data platform"
) -> str:
pass

@abstractmethod
Expand Down

0 comments on commit 0a82461

Please sign in to comment.