removed some prints statements

This commit is contained in:
stephen 2026-07-20 21:53:45 +10:00
parent 46e6a84c52
commit 520dcd5cd6
4 changed files with 7 additions and 3 deletions

View file

@ -15,4 +15,8 @@ git switch -c refactor/simplified-schema-modules
![Proposed new structure](./images/image-03.png)
# Starting refactoring
# Starting refactoring
# How to start using uv
(139_spanish-voice-trainer) stephenlohning@Scotty 139_spanish-voice-trainer % uv run main.py

Binary file not shown.

Binary file not shown.

View file

@ -360,8 +360,8 @@ class SandboxTab(QWidget):
config_speed = settings.get("tts_playback_speed", "1.0")
try:
pct = int((float(config_speed) - 1.0) * 100)
print(f"[DEBUG Sandbox Speech] config_speed (Raw String): {config_speed}")
print(f"[DEBUG Sandbox Speech] Calculated pct (Integer): {pct}")
# print(f"[DEBUG Sandbox Speech] config_speed (Raw String): {config_speed}")
# print(f"[DEBUG Sandbox Speech] Calculated pct (Integer): {pct}")
rate_string = f"{'+' if pct >= 0 else ''}{pct}%"
except Exception:
print(f"[DEBUG Sandbox Speech] Failed to parse speed calculation")