Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maximearmstrong committed Dec 3, 2024
1 parent 0d2f4a3 commit 9c0212c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from pydantic import Field, PrivateAttr
from requests.exceptions import RequestException

from dagster_airbyte.types import AirbyteOutput
from dagster_airbyte.translator import AirbyteWorkspaceData
from dagster_airbyte.types import AirbyteOutput

DEFAULT_POLL_INTERVAL_SECONDS = 10

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from typing import Any, Mapping, NamedTuple

from dagster._record import record
from dagster._annotations import experimental
from dagster._core.definitions.asset_spec import AssetSpec
from dagster._record import record
from dagster._serdes.serdes import whitelist_for_serdes


class AirbyteConnectionTableProps(NamedTuple):
...
class AirbyteConnectionTableProps(NamedTuple): ...


@whitelist_for_serdes
Expand All @@ -17,8 +16,8 @@ class AirbyteConnection:

@classmethod
def from_connection_details(
cls,
connection_details: Mapping[str, Any],
cls,
connection_details: Mapping[str, Any],
) -> "AirbyteConnection":
raise NotImplementedError()

Expand All @@ -30,8 +29,8 @@ class AirbyteDestination:

@classmethod
def from_destination_details(
cls,
destination_details: Mapping[str, Any],
cls,
destination_details: Mapping[str, Any],
) -> "AirbyteDestination":
raise NotImplementedError()

Expand Down

0 comments on commit 9c0212c

Please sign in to comment.