Remove redundant call

This commit is contained in:
Joseph Schorr 2018-11-27 18:44:34 +02:00
parent d03eb12a77
commit 492934de3c

View file

@ -33,5 +33,5 @@ class RepositoryContentRetriever(ContentRetriever):
if blob is None:
return None
placements = list(get_storage_locations(blob.uuid))
return self.storage.get_content(placements, get_layer_path(blob))
assert blob.locations is not None
return self.storage.get_content(blob.locations, get_layer_path(blob))