diff --git a/supertokens_python/recipe/thirdparty/providers/__init__.py b/supertokens_python/recipe/thirdparty/providers/__init__.py index 5f3c456f2..c25d69053 100644 --- a/supertokens_python/recipe/thirdparty/providers/__init__.py +++ b/supertokens_python/recipe/thirdparty/providers/__init__.py @@ -11,11 +11,23 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -from .apple import Apple # type: ignore -from .discord import Discord # type: ignore -from .facebook import Facebook # type: ignore -from .github import Github # type: ignore -from .google import Google # type: ignore -from .google_workspaces import GoogleWorkspaces # type: ignore -from .bitbucket import Bitbucket # type: ignore -from .gitlab import Gitlab # type: ignore + +from .apple import Apple +from .discord import Discord +from .facebook import Facebook +from .github import Github +from .google import Google +from .google_workspaces import GoogleWorkspaces +from .bitbucket import Bitbucket +from .gitlab import Gitlab + +__all__ = [ + "Apple", + "Discord", + "Facebook", + "Github", + "Google", + "GoogleWorkspaces", + "Bitbucket", + "Gitlab", +]