The dict-entry catch-all assigned kwargs["content"] = value directly, so a per_page > 1 page combining multiple dict entries silently kept only the last entry's content while embeds/files/buttons from every entry still accumulated - an asymmetry that dropped text with no error. The dict branch's content key now routes through the same None-check/newline-join accumulation the plain-str branch already used, so every entry's content survives in order. Signed-off-by: disqualifier <dev@disqualifier.me>
16 lines
369 B
TOML
16 lines
369 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "dpy_paginator"
|
|
version = "0.1.9"
|
|
description = "Button-navigated paginator for discord.py — config-free, injectable emojis, installable."
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"discord.py>=2.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/dpy_paginator"]
|