Skip to content

Commit f6304be

Browse files
samspade21claude
andcommitted
fix: Split long line in api_client.py to meet 100 char limit
Fixes ruff E501 line-too-long error on line 366 by splitting the warning message across two lines using implicit string concatenation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 01718d0 commit f6304be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

custom_components/vacasa/api_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,8 @@ async def _request(
363363
# Log diagnostic info for troubleshooting
364364
response_text = await response.text()
365365
_LOGGER.warning(
366-
"Failed to parse JSON from %s (content-type: %s): %s. Response: %s",
366+
"Failed to parse JSON from %s (content-type: %s): %s. "
367+
"Response: %s",
367368
url,
368369
response.content_type,
369370
e,

0 commit comments

Comments
 (0)