Skip to content

Commit

Permalink
change the import for httpClient to be explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Aureliano da Silva Maia committed Oct 18, 2023
1 parent 4e8a1b4 commit f2c9b73
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tokendito/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from botocore.client import Config as BotocoreConfig
from botocore.exceptions import ClientError
import botocore.session
from http_client import HTTP_client
from tokendito.http_client import HTTP_client
from tokendito import okta
from tokendito import user

Expand Down
2 changes: 1 addition & 1 deletion tokendito/okta.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import bs4
from bs4 import BeautifulSoup
from http_client import HTTP_client
from tokendito.http_client import HTTP_client
from tokendito import duo
from tokendito import user

Expand Down
2 changes: 1 addition & 1 deletion tokendito/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import logging
import sys

from http_client import HTTP_client
from tokendito.http_client import HTTP_client
from tokendito import aws
from tokendito import okta
from tokendito import user
Expand Down
2 changes: 1 addition & 1 deletion tokendito/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from botocore import __version__ as __botocore_version__
from bs4 import __version__ as __bs4_version__ # type: ignore (bs4 does not have PEP 561 support)
from bs4 import BeautifulSoup
from http_client import HTTP_client
from tokendito.http_client import HTTP_client
import requests
from tokendito import __version__
from tokendito import aws
Expand Down

0 comments on commit f2c9b73

Please sign in to comment.