removed some prints statements
This commit is contained in:
parent
46e6a84c52
commit
520dcd5cd6
4 changed files with 7 additions and 3 deletions
|
|
@ -16,3 +16,7 @@ git switch -c refactor/simplified-schema-modules
|
|||

|
||||
|
||||
# Starting refactoring
|
||||
|
||||
# How to start using uv
|
||||
|
||||
(139_spanish-voice-trainer) stephenlohning@Scotty 139_spanish-voice-trainer % uv run main.py
|
||||
BIN
doc/Notes.pdf
BIN
doc/Notes.pdf
Binary file not shown.
Binary file not shown.
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue