Added unit tests for database, markov, flags, CLI, and version modules.
CI / Formatting (push) Successful in 5s
CI / Linting (push) Successful in 5s
CI / Tests (push) Successful in 9s
CI / Type Checking (push) Failing after 10s
CI / Spelling (push) Successful in 5s

This commit is contained in:
2026-03-17 14:13:31 -04:00
parent 34ae3b3e64
commit 2d13dfb063
8 changed files with 770 additions and 7 deletions
-2
View File
@@ -115,8 +115,6 @@ async def generate(
if word is None:
await _ingest_sentence(db, channel_id, 0, "Hello world!")
word = await db.get_random_start_word(channel_id)
if word is None:
return ""
parts: list[str] = []
parts.append(word)