Skip to content

Commit 2f79565

Browse files
Wrap urlunparse args to satisfy ruff E501
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018HXYFVCZGi7YN9qjDGyJCQ
1 parent 587317b commit 2f79565

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

src/unstract/clone/client.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,14 @@ def _same_origin_url(self, url: str, label: str) -> str:
147147
f"GET {label} pagination 'next' left the platform host: {link_host}"
148148
)
149149
return urlunparse(
150-
(base.scheme, base.netloc, link.path, link.params, link.query, link.fragment)
150+
(
151+
base.scheme,
152+
base.netloc,
153+
link.path,
154+
link.params,
155+
link.query,
156+
link.fragment,
157+
)
151158
)
152159

153160
@staticmethod

0 commit comments

Comments
 (0)