Skip to content

Commit

Permalink
refactor: Properly import the providers
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu committed Jul 11, 2023
1 parent de91d26 commit c875359
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions supertokens_python/recipe/thirdparty/providers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

0 comments on commit c875359

Please sign in to comment.