Skip to content

Commit

Permalink
Auto-fix lint issues (unsafe)
Browse files Browse the repository at this point in the history
  • Loading branch information
octavia-squidington-iii committed Nov 5, 2024
1 parent 6693397 commit 41afdcb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions airbyte/_connector_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

import abc
import json
from collections.abc import Callable
from pathlib import Path
from typing import TYPE_CHECKING, Any, Literal

Expand Down Expand Up @@ -36,7 +35,7 @@

if TYPE_CHECKING:
import logging
from collections.abc import Generator
from collections.abc import Callable, Generator
from typing import IO

from airbyte._executors.base import Executor
Expand Down
3 changes: 2 additions & 1 deletion airbyte/destinations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from __future__ import annotations

import warnings
from collections.abc import Callable
from typing import IO, TYPE_CHECKING, Any, Literal, cast

from airbyte_protocol.models import (
Expand All @@ -34,6 +33,8 @@


if TYPE_CHECKING:
from collections.abc import Callable

from airbyte._executors.base import Executor
from airbyte.caches.base import CacheBase
from airbyte.shared.state_writers import StateWriterBase
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,14 +6,14 @@

from __future__ import annotations

from collections.abc import Callable
from typing import TYPE_CHECKING, Any

from airbyte._executors.util import get_connector_executor
from airbyte.destinations.base import Destination


if TYPE_CHECKING:
from collections.abc import Callable
from pathlib import Path


Expand Down
3 changes: 1 addition & 2 deletions airbyte/sources/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

import json
import warnings
from collections.abc import Callable
from pathlib import Path
from typing import TYPE_CHECKING, Any, Literal

Expand Down Expand Up @@ -37,7 +36,7 @@


if TYPE_CHECKING:
from collections.abc import Generator, Iterable, Iterator
from collections.abc import Callable, Generator, Iterable, Iterator

from airbyte_cdk import ConnectorSpecification
from airbyte_protocol.models import AirbyteStream
Expand Down
2 changes: 1 addition & 1 deletion airbyte/sources/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from __future__ import annotations

import warnings
from collections.abc import Callable
from decimal import Decimal, InvalidOperation
from typing import TYPE_CHECKING, Any

Expand All @@ -14,6 +13,7 @@


if TYPE_CHECKING:
from collections.abc import Callable
from pathlib import Path


Expand Down

0 comments on commit 41afdcb

Please sign in to comment.