TrivialFix: Remove config import unused

This patch removes config import unused in
monasca_log_api_tempest/services/log_api_v2_client.py
monasca_log_api_tempest/services/log_api_v3_client.py

Change-Id: Ided6ab3f8dd0476972b82de43d5ca6ce94bc90e1
This commit is contained in:
Nguyen Hung Phuong 2016-09-15 17:26:55 +07:00
parent 9d90be760e
commit 7175ff0c55
2 changed files with 1 additions and 7 deletions

View File

@ -13,11 +13,8 @@
# under the License.
from oslo_serialization import jsonutils as json
from tempest import config
from tempest.lib.common import rest_client
CONF = config.CONF
class LogApiV2Client(rest_client.RestClient):

View File

@ -13,11 +13,8 @@
# under the License.
from oslo_serialization import jsonutils as json
from tempest import config
from tempest.lib.common import rest_client
CONF = config.CONF
class LogApiV3Client(rest_client.RestClient):
@ -47,4 +44,4 @@ class LogApiV3Client(rest_client.RestClient):
return resp, body
def custom_request(self, method, headers=None, body=None):
self.request(method=method, url=LogApiV3Client._uri, headers=headers, body=body)
self.request(method=method, url=LogApiV3Client._uri, headers=headers, body=body)