Fix various TypeDicts for Unpack

This commit is contained in:
Soheab
2025-09-28 18:03:50 +02:00
committed by GitHub
parent bd329b1515
commit a2a228105b
6 changed files with 28 additions and 37 deletions

View File

@@ -89,8 +89,8 @@ if TYPE_CHECKING:
PrefixType = Union[_Prefix, _PrefixCallable[BotT]]
class _BotOptions(_ClientOptions, total=False):
owner_id: int
owner_ids: Collection[int]
owner_id: Optional[int]
owner_ids: Optional[Collection[int]]
strip_after_prefix: bool
case_insensitive: bool