removed some prints statements

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

View file

@ -16,3 +16,7 @@ git switch -c refactor/simplified-schema-modules
![Proposed new structure](./images/image-03.png) ![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") config_speed = settings.get("tts_playback_speed", "1.0")
try: try:
pct = int((float(config_speed) - 1.0) * 100) pct = int((float(config_speed) - 1.0) * 100)
print(f"[DEBUG Sandbox Speech] config_speed (Raw String): {config_speed}") # 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] Calculated pct (Integer): {pct}")
rate_string = f"{'+' if pct >= 0 else ''}{pct}%" rate_string = f"{'+' if pct >= 0 else ''}{pct}%"
except Exception: except Exception:
print(f"[DEBUG Sandbox Speech] Failed to parse speed calculation") print(f"[DEBUG Sandbox Speech] Failed to parse speed calculation")