Skip to content

Commit 21db981

Browse files
Potential fix for code scanning alert no. 50: Clear-text logging of sensitive information
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 2bb5c1f commit 21db981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

voice_classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def classify_elevenlabs_voices():
387387
print(
388388
f"{r['voice_name']:<25} {r.get('gender', 'N/A'):<10} {r['age_group']:<15} {r['accent']:<20} {r['voice_quality']:<12} {r['speaking_style']:<15} {r['confidence']:<5}")
389389
else:
390-
print(f"{r['voice_name']:<25} ERROR: {r['error'][:80]}")
390+
print(f"{r['voice_name']:<25} ERROR: Classification error")
391391

392392
print("=" * 120)
393393

0 commit comments

Comments
 (0)