Voice et bot modif

This commit is contained in:
pi 2026-06-16 17:09:34 +00:00
parent 189d56026b
commit 7333a22bcd
10774 changed files with 634644 additions and 933308 deletions

View file

@ -2,8 +2,6 @@
from __future__ import annotations
from typing import ClassVar
class FrozenError(AttributeError):
"""
@ -16,8 +14,10 @@ class FrozenError(AttributeError):
.. versionadded:: 20.1.0
"""
msg = "can't set attribute"
args: ClassVar[tuple[str]] = [msg]
def __init__(self):
msg = "can't set attribute"
super().__init__(msg)
self.msg = msg
class FrozenInstanceError(FrozenError):