Skip to content

Commit

Permalink
chore(imports): remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ehdsouza committed Aug 21, 2019
1 parent c7fcb3e commit e67e35a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# limitations under the License.

from .authenticator import Authenticator
from ..utils import has_bad_first_or_last_char


class BearerTokenAuthenticator(Authenticator):
Expand Down
3 changes: 1 addition & 2 deletions ibm_cloud_sdk_core/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import os
from os.path import dirname, isfile, join, expanduser, abspath, basename
from os.path import basename
import platform
import json as json_import
import sys
Expand Down
2 changes: 1 addition & 1 deletion ibm_cloud_sdk_core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.

import dateutil.parser as date_parser
from os.path import dirname, isfile, join, expanduser, abspath, basename
from os.path import dirname, isfile, join, expanduser, abspath
from os import getenv
import json as json_import

Expand Down

0 comments on commit e67e35a

Please sign in to comment.