Skip to content

Commit c875359

Browse files
committed
refactor: Properly import the providers
1 parent de91d26 commit c875359

File tree

1 file changed

+20
-8
lines changed
  • supertokens_python/recipe/thirdparty/providers

1 file changed

+20
-8
lines changed

supertokens_python/recipe/thirdparty/providers/__init__.py

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,23 @@
1111
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
14-
from .apple import Apple # type: ignore
15-
from .discord import Discord # type: ignore
16-
from .facebook import Facebook # type: ignore
17-
from .github import Github # type: ignore
18-
from .google import Google # type: ignore
19-
from .google_workspaces import GoogleWorkspaces # type: ignore
20-
from .bitbucket import Bitbucket # type: ignore
21-
from .gitlab import Gitlab # type: ignore
14+
15+
from .apple import Apple
16+
from .discord import Discord
17+
from .facebook import Facebook
18+
from .github import Github
19+
from .google import Google
20+
from .google_workspaces import GoogleWorkspaces
21+
from .bitbucket import Bitbucket
22+
from .gitlab import Gitlab
23+
24+
__all__ = [
25+
"Apple",
26+
"Discord",
27+
"Facebook",
28+
"Github",
29+
"Google",
30+
"GoogleWorkspaces",
31+
"Bitbucket",
32+
"Gitlab",
33+
]

0 commit comments

Comments
 (0)