-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python: Cleanup exports, export exceptions as
svix.exceptions
and w…
…ebhooks as `svix.webhooks` (#82)
- Loading branch information
1 parent
30adc84
commit 1917365
Showing
4 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from .openapi_client.exceptions import ( | ||
ApiAttributeError, | ||
ApiException, | ||
ApiKeyError, | ||
ApiTypeError, | ||
ApiValueError, | ||
ForbiddenException, | ||
NotFoundException, | ||
ServiceException, | ||
UnauthorizedException, | ||
) | ||
from .webhooks import WebhookVerificationError | ||
|
||
__all__ = [ | ||
"ApiAttributeError", | ||
"ApiException", | ||
"ApiKeyError", | ||
"ApiTypeError", | ||
"ApiValueError", | ||
"ForbiddenException", | ||
"NotFoundException", | ||
"ServiceException", | ||
"UnauthorizedException", | ||
"WebhookVerificationError", | ||
] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters