Skip to content

Commit bfc1943

Browse files
committed
format fix
1 parent e2a9fb9 commit bfc1943

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

airbyte_cdk/test/declarative/utils/job_runner.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,13 @@ def run_test_job(
4545
if isinstance(connector, type) or callable(connector):
4646
# If the connector is a class or a factory lambda, instantiate it.
4747
connector_obj = connector()
48-
elif isinstance(
49-
connector, IConnector,
50-
) or True: # TODO: Get a valid protocol check here
48+
elif (
49+
isinstance(
50+
connector,
51+
IConnector,
52+
)
53+
or True
54+
): # TODO: Get a valid protocol check here
5155
connector_obj = connector
5256
else:
5357
raise ValueError(

0 commit comments

Comments
 (0)