We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a277796 commit f060c44Copy full SHA for f060c44
src/retrocast/process_commands.py
@@ -561,13 +561,12 @@ def validate_transcriptions(
561
invalid_files.append((json_file, error_msg))
562
if verbose:
563
console.print(f"[red]✗[/red] {relative_path}: Validation failed")
564
- if verbose:
565
- # Show first error only for brevity
566
- errors = e.errors()
567
- if errors:
568
- first_error = errors[0]
569
- console.print(
570
- f" [dim]Field: {first_error['loc']}, "
+ # Show first error only for brevity
+ errors = e.errors()
+ if errors:
+ first_error = errors[0]
+ console.print(
+ f" [dim]Field: {first_error['loc']}, "
571
f"Error: {first_error['msg']}[/dim]"
572
)
573
0 commit comments