Skip to content

Commit

Permalink
Auto-fix lint and format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
octavia-squidington-iii committed Feb 7, 2025
1 parent e1907ff commit 83f2b40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte_cdk/sources/declarative/decoders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
JsonParser,
Parser,
)
from airbyte_cdk.sources.declarative.decoders.csv_decoder import CsvDecoder
from airbyte_cdk.sources.declarative.decoders.decoder import Decoder
from airbyte_cdk.sources.declarative.decoders.json_decoder import (
GzipJsonDecoder,
Expand All @@ -20,7 +21,6 @@
PaginationDecoderDecorator,
)
from airbyte_cdk.sources.declarative.decoders.xml_decoder import XmlDecoder
from airbyte_cdk.sources.declarative.decoders.csv_decoder import CsvDecoder
from airbyte_cdk.sources.declarative.decoders.zipfile_decoder import ZipfileDecoder

__all__ = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@ class IterableDecoder(BaseModel):
class XmlDecoder(BaseModel):
type: Literal["XmlDecoder"]


class CsvDecoder(BaseModel):
type: Literal["CsvDecoder"]
delimiter: Optional[str] = Field(
Expand Down

0 comments on commit 83f2b40

Please sign in to comment.