Skip to content

Commit a8ee4be

Browse files
rquiduteclaude
andcommitted
fix: restore accidentally collapsed newlines in run_tests.py and validation.py
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 9a6a053 commit a8ee4be

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

th_cli/commands/run_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ async def run_tests(
230230
}
231231

232232
# Merge extra test parameters if provided (temporary for this execution only)
233-
if extra_test_params: click.echo(
233+
if extra_test_params:
234+
click.echo(
234235
colorize_key_value(
235236
"Extra SDK Test Parameters (Execution Only)", json.dumps(extra_test_params, indent=JSON_INDENT)
236237
)

th_cli/validation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ def validate_tc_params_file(file_path: str) -> Path:
167167
return path
168168

169169

170-
def validate_hostname(hostname: str) -> str: """Validate hostname format."""
170+
def validate_hostname(hostname: str) -> str:
171+
"""Validate hostname format."""
171172
if not hostname or len(hostname.strip()) == 0:
172173
raise CLIError("Hostname cannot be empty")
173174

0 commit comments

Comments
 (0)