Skip to content

Commit 07b2316

Browse files
chore: auto-fix lint and format issues
1 parent 998dcea commit 07b2316

File tree

1 file changed

+18
-4
lines changed
  • airbyte-integrations/connectors/source-asana/source_asana

1 file changed

+18
-4
lines changed

airbyte-integrations/connectors/source-asana/source_asana/components.py

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,15 @@ def send_request(
4141
) -> Optional[requests.Response]:
4242
try:
4343
return super().send_request(
44-
stream_state, stream_slice, next_page_token, path,
45-
request_headers, request_params, request_body_data, request_body_json, log_formatter,
44+
stream_state,
45+
stream_slice,
46+
next_page_token,
47+
path,
48+
request_headers,
49+
request_params,
50+
request_body_data,
51+
request_body_json,
52+
log_formatter,
4653
)
4754
except AirbyteTracedException as e:
4855
if "Unauthorized" not in str(e):
@@ -54,8 +61,15 @@ def send_request(
5461
if hasattr(self.authenticator, "refresh_and_set_access_token"):
5562
self.authenticator.refresh_and_set_access_token()
5663
return super().send_request(
57-
stream_state, stream_slice, next_page_token, path,
58-
request_headers, request_params, request_body_data, request_body_json, log_formatter,
64+
stream_state,
65+
stream_slice,
66+
next_page_token,
67+
path,
68+
request_headers,
69+
request_params,
70+
request_body_data,
71+
request_body_json,
72+
log_formatter,
5973
)
6074
raise
6175

0 commit comments

Comments
 (0)