Remove logging import unused

This patch removes logging import unused in
designate_tempest_plugin/services/dns/admin/json/quotas_client.py
designate_tempest_plugin/services/dns/v2/json/quotas_client.py

Change-Id: Ibd32039f533405f67767b3396ed4b846ee62f129
This commit is contained in:
Cao Xuan Hoang 2016-08-29 14:12:38 +07:00
parent 7967b0e91a
commit 657ba8b8f0
2 changed files with 0 additions and 6 deletions

View File

@ -11,13 +11,10 @@
# 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 oslo_log import log as logging
from designate_tempest_plugin import data_utils as dns_data_utils
from designate_tempest_plugin.services.dns.admin.json import base
LOG = logging.getLogger(__name__)
class QuotasClient(base.DnsClientAdminBase):

View File

@ -11,13 +11,10 @@
# 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 oslo_log import log as logging
from designate_tempest_plugin import data_utils as dns_data_utils
from designate_tempest_plugin.services.dns.v2.json import base
LOG = logging.getLogger(__name__)
class QuotasClient(base.DnsClientV2Base):