mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 08:36:03 -04:00
Mark Module API error imports as re-exported and mark Synapse as containing type annotations (#11054)
This commit is contained in:
parent
8711e15734
commit
2a2b189130
4 changed files with 11 additions and 2 deletions
|
@ -14,9 +14,16 @@
|
|||
|
||||
"""Exception types which are exposed as part of the stable module API"""
|
||||
|
||||
from synapse.api.errors import ( # noqa: F401
|
||||
from synapse.api.errors import (
|
||||
InvalidClientCredentialsError,
|
||||
RedirectException,
|
||||
SynapseError,
|
||||
)
|
||||
from synapse.config._base import ConfigError # noqa: F401
|
||||
from synapse.config._base import ConfigError
|
||||
|
||||
__all__ = [
|
||||
"InvalidClientCredentialsError",
|
||||
"RedirectException",
|
||||
"SynapseError",
|
||||
"ConfigError",
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue