Skip to content

Commit

Permalink
Adds missing Callable import
Browse files Browse the repository at this point in the history
  • Loading branch information
tcboles committed Nov 4, 2024
1 parent 5650728 commit 23aa7b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion airbyte/_connector_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import abc
import json
from pathlib import Path
from typing import TYPE_CHECKING, Any, Literal
from typing import TYPE_CHECKING, Any, Callable, Literal

import jsonschema
import rich
Expand Down
2 changes: 1 addition & 1 deletion airbyte/destinations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from __future__ import annotations

import warnings
from typing import IO, TYPE_CHECKING, Any, Literal, cast
from typing import IO, TYPE_CHECKING, Any, Callable, Literal, cast

from airbyte_protocol.models import (
Type,
Expand Down
2 changes: 1 addition & 1 deletion airbyte/destinations/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from __future__ import annotations

from typing import TYPE_CHECKING, Any
from typing import TYPE_CHECKING, Any, Callable

from airbyte._executors.util import get_connector_executor
from airbyte.destinations.base import Destination
Expand Down
2 changes: 1 addition & 1 deletion airbyte/sources/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import json
import warnings
from pathlib import Path
from typing import TYPE_CHECKING, Any, Literal
from typing import TYPE_CHECKING, Any, Callable, Literal

import yaml
from rich import print # noqa: A004 # Allow shadowing the built-in
Expand Down
2 changes: 1 addition & 1 deletion airbyte/sources/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import warnings
from decimal import Decimal, InvalidOperation
from typing import TYPE_CHECKING, Any
from typing import TYPE_CHECKING, Any, Callable

from airbyte._executors.util import get_connector_executor
from airbyte.exceptions import PyAirbyteInputError
Expand Down

0 comments on commit 23aa7b6

Please sign in to comment.