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

|

|
||||||
|
|
||||||
# Starting refactoring
|
# 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")
|
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")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue