Skip to content

Commit 7c468c0

Browse files
authored
Update settings.py
1 parent 0a3c5c5 commit 7c468c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vocalizr/app/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __str__(self):
5151

5252

5353
class DirectorySettings(BaseModel):
54-
"""Holds directory path configurations and ensures their existence."""
54+
"""Hold directory path configurations and ensures their existence."""
5555

5656
base: DirectoryPath = Path.cwd()
5757
results: DirectoryPath = Path.cwd() / "results"
@@ -84,7 +84,7 @@ def create_missing_dirs(self) -> "DirectorySettings":
8484

8585

8686
class ModelSettings(BaseModel):
87-
"""Settings related to model execution, including device selection, character limits, and voice choices."""
87+
"""Settings related to model execution."""
8888

8989
device: Literal["cuda", "cpu"] = "cuda" if is_available() else "cpu"
9090
char_limit: int = -1

0 commit comments

Comments
 (0)