diff --git a/keystoneclient/auth/identity/generic/password.py b/keystoneclient/auth/identity/generic/password.py index ba3b9d220..873e25396 100644 --- a/keystoneclient/auth/identity/generic/password.py +++ b/keystoneclient/auth/identity/generic/password.py @@ -10,8 +10,6 @@ # License for the specific language governing permissions and limitations # under the License. -import logging - from oslo_config import cfg from positional import positional @@ -21,8 +19,6 @@ from keystoneclient.auth.identity import v2 from keystoneclient.auth.identity import v3 from keystoneclient import utils -LOG = logging.getLogger(__name__) - def get_options(): return [ diff --git a/keystoneclient/auth/identity/generic/token.py b/keystoneclient/auth/identity/generic/token.py index 6a5d15b28..e3d01aa0f 100644 --- a/keystoneclient/auth/identity/generic/token.py +++ b/keystoneclient/auth/identity/generic/token.py @@ -10,8 +10,6 @@ # License for the specific language governing permissions and limitations # under the License. -import logging - from oslo_config import cfg from keystoneclient import _discover @@ -19,8 +17,6 @@ from keystoneclient.auth.identity.generic import base from keystoneclient.auth.identity import v2 from keystoneclient.auth.identity import v3 -LOG = logging.getLogger(__name__) - def get_options(): return [ diff --git a/keystoneclient/v3/users.py b/keystoneclient/v3/users.py index 4cd820381..e1990ce45 100644 --- a/keystoneclient/v3/users.py +++ b/keystoneclient/v3/users.py @@ -14,8 +14,6 @@ # License for the specific language governing permissions and limitations # under the License. -import logging - from debtcollector import renames from positional import positional @@ -23,8 +21,6 @@ from keystoneclient import base from keystoneclient import exceptions from keystoneclient.i18n import _ -LOG = logging.getLogger(__name__) - class User(base.Resource): """Represents an Identity user.