Merge "Remove unnecessary __init__()"

This commit is contained in:
Jenkins 2016-06-07 03:18:31 +00:00 committed by Gerrit Code Review
commit 704c44497e
2 changed files with 0 additions and 8 deletions

View File

@ -32,10 +32,6 @@ CHUNKSIZE = 1024 * 64 # 64kB
class ImagesClient(rest_client.RestClient):
def __init__(self, auth_provider, catalog_type, region, **kwargs):
super(ImagesClient, self).__init__(
auth_provider, catalog_type, region, **kwargs)
def _image_meta_from_headers(self, headers):
meta = {'properties': {}}
for key, value in six.iteritems(headers):

View File

@ -26,10 +26,6 @@ CHUNKSIZE = 1024 * 64 # 64kB
class ImagesClient(rest_client.RestClient):
def __init__(self, auth_provider, catalog_type, region, **kwargs):
super(ImagesClient, self).__init__(
auth_provider, catalog_type, region, **kwargs)
def update_image(self, image_id, patch):
"""Update an image.