Skip to content

Commit d293b4b

Browse files
committed
Fix formatting error
1 parent 0b69f03 commit d293b4b

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

gavaconnect/http/transport.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,9 @@ def build() -> httpx.Request:
147147
try:
148148
await req_hook(req)
149149
except Exception as e:
150-
logger.debug("Request hook failed during retry: %s", e, exc_info=True)
150+
logger.debug(
151+
"Request hook failed during retry: %s", e, exc_info=True
152+
)
151153
pass
152154
continue # retry now with refreshed auth
153155

@@ -180,7 +182,9 @@ def build() -> httpx.Request:
180182
try:
181183
await req_hook(req)
182184
except Exception as e:
183-
logger.debug("Request hook failed during retry: %s", e, exc_info=True)
185+
logger.debug(
186+
"Request hook failed during retry: %s", e, exc_info=True
187+
)
184188
pass
185189
continue
186190

0 commit comments

Comments
 (0)