- Reset master to upstream/main (16,697 commits) - Overlay 2,271 local-only files (skills, tools, workspace, configs, apps) - Restore IDENTITY.md and USER.md templates - Build verified, gateway running, Discord working Co-Authored-By: Claude Opus 4.6 <[email protected]>
18 lines
539 B
Python
18 lines
539 B
Python
from typing import Any
|
|
|
|
class FrozenError(AttributeError):
|
|
msg: str = ...
|
|
|
|
class FrozenInstanceError(FrozenError): ...
|
|
class FrozenAttributeError(FrozenError): ...
|
|
class AttrsAttributeNotFoundError(ValueError): ...
|
|
class NotAnAttrsClassError(ValueError): ...
|
|
class DefaultAlreadySetError(RuntimeError): ...
|
|
class UnannotatedAttributeError(RuntimeError): ...
|
|
class PythonTooOldError(RuntimeError): ...
|
|
|
|
class NotCallableError(TypeError):
|
|
msg: str = ...
|
|
value: Any = ...
|
|
def __init__(self, msg: str, value: Any) -> None: ...
|