We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24e6a2 commit b264d07Copy full SHA for b264d07
airbyte_cdk/test/standard_tests/docker_base.py
@@ -10,7 +10,7 @@
10
import warnings
11
from dataclasses import asdict
12
from pathlib import Path
13
-from typing import Literal, cast
+from typing import Any, Literal, cast
14
15
import orjson
16
import pytest
@@ -64,7 +64,7 @@ def is_destination_connector(cls) -> bool:
64
return cast(str, cls.connector_name).startswith("destination-")
65
66
@classproperty
67
- def acceptance_test_config(cls) -> dict[str, object]:
+ def acceptance_test_config(cls) -> Any:
68
"""Get the contents of acceptance test config file.
69
70
Also perform some basic validation that the file has the expected structure.
0 commit comments