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 e2a9fb9 commit bfc1943Copy full SHA for bfc1943
airbyte_cdk/test/declarative/utils/job_runner.py
@@ -45,9 +45,13 @@ def run_test_job(
45
if isinstance(connector, type) or callable(connector):
46
# If the connector is a class or a factory lambda, instantiate it.
47
connector_obj = connector()
48
- elif isinstance(
49
- connector, IConnector,
50
- ) or True: # TODO: Get a valid protocol check here
+ elif (
+ isinstance(
+ connector,
51
+ IConnector,
52
+ )
53
+ or True
54
+ ): # TODO: Get a valid protocol check here
55
connector_obj = connector
56
else:
57
raise ValueError(
0 commit comments