Skip to content

Commit 41f376b

Browse files
committed
chore: format code
1 parent 03e776c commit 41f376b

File tree

10 files changed

+14
-13
lines changed

10 files changed

+14
-13
lines changed

airbyte_cdk/sources/declarative/transformations/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
# isort: split
1414
from .add_fields import AddFields
15-
from .remap_field import RemapField
1615
from .remove_fields import RemoveFields
1716

1817
__all__ = ["AddFields", "RecordTransformation", "RemapField", "RemoveFields"]

airbyte_cdk/sources/declarative/transformations/config_transformations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from .remap_field import RemapField

airbyte_cdk/sources/declarative/transformations/config_transformations/config_transformation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from abc import ABC, abstractmethod

airbyte_cdk/sources/declarative/transformations/config_transformations/remap_field.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from dataclasses import dataclass
66
from typing import Any, List, Mapping, Union
77

88
from airbyte_cdk.sources.declarative.interpolation.interpolated_string import InterpolatedString
9-
from airbyte_cdk.sources.declarative.transformations.config_transformations.config_transformation import ConfigTransformation
9+
from airbyte_cdk.sources.declarative.transformations.config_transformations.config_transformation import (
10+
ConfigTransformation,
11+
)
1012

1113

1214
@dataclass

airbyte_cdk/sources/declarative/validators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from airbyte_cdk.sources.declarative.validators.dpath_validator import DpathValidator

airbyte_cdk/sources/declarative/validators/dpath_validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from dataclasses import dataclass

airbyte_cdk/sources/declarative/validators/predicate_validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from dataclasses import dataclass

airbyte_cdk/sources/declarative/validators/validate_adheres_to_schema.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from dataclasses import dataclass
6-
from typing import Any
6+
from typing import Any, Mapping
77

88
import jsonschema
99

@@ -16,7 +16,7 @@ class ValidateAdheresToSchema(ValidationStrategy):
1616
Validates that a value adheres to a specified JSON schema.
1717
"""
1818

19-
schema: dict[str, Any]
19+
schema: Mapping[str, Any]
2020

2121
def validate(self, value: Any) -> None:
2222
"""

airbyte_cdk/sources/declarative/validators/validation_strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from abc import ABC, abstractmethod

airbyte_cdk/sources/declarative/validators/validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2+
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
33
#
44

55
from abc import ABC, abstractmethod

0 commit comments

Comments
 (0)