Compare commits

...

2 Commits

Author SHA1 Message Date
98fc0596d4 chore: bump version to 0.4.4
All checks were successful
Build and Publish / build-and-publish (push) Successful in 19s
Signed-off-by: Max P. <Mail@MPassarello.de>
2025-05-05 12:02:55 +02:00
7059ebda4c refactor(send_cmd): rename config variable for clarity
- Rename `CONFIGURATION` to `CONFIG` for consistency and brevity.
- Update method call to use dot notation for accessing `socket_path`.

Signed-off-by: Max P. <Mail@MPassarello.de>
2025-05-05 12:02:51 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "pyvtt"
version = "0.4.3"
version = "0.4.4"
description = "Python Voice to Text + LLMA"
authors = [{ name = "Max P.", email = "Mail@MPassarello.de" }]
license = { text = "MIT" }

View File

@@ -4,7 +4,7 @@ import argparse
from pyvtt.configuration import read_configurations
from typing import Optional
CONFIGURATION = read_configurations()
CONFIG = read_configurations()
def send_cmd(cmd: str, socket_path: str, preset: Optional[str] = None) -> None:
@@ -62,4 +62,4 @@ def main():
args = parser.parse_args()
send_cmd(args.command, CONFIGURATION["socket_path"], args.preset)
send_cmd(args.command, CONFIG.socket_path, args.preset)