From e98bd5724049b278a11213cbabe7fa35936f67a0 Mon Sep 17 00:00:00 2001 From: Mendy Man Date: Mon, 20 Jan 2025 12:22:53 -0500 Subject: [PATCH] python: Remove `__all__` export from `application.py` `__all__` allows a `from svix.api.application import *`, but this was never a supported feature. And the `__all__` is not in any of the other modules. --- python/svix/api/application.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/svix/api/application.py b/python/svix/api/application.py index f8febe2bf..cede9453d 100644 --- a/python/svix/api/application.py +++ b/python/svix/api/application.py @@ -152,6 +152,3 @@ def patch(self, app_id: str, application_patch: ApplicationPatch) -> Application return v1_application_patch.request_sync( client=self._client, app_id=app_id, json_body=application_patch ) - - -__all__ = ["ApplicationIn", "ApplicationOut", "ApplicationPatch"]