This commit is contained in:
Lex Berezhny 2019-07-12 01:52:28 -04:00
parent 0327ce53a6
commit 1eebe006ae

View file

@ -280,7 +280,7 @@ def resolve(urls) -> Tuple[List, List, dict]:
def resolve_to_bytes(urls) -> Tuple[bytes, dict]:
start = time.time()
*result, _metrics = resolve(urls)
output = Outputs.to_bytes(*result)
output = Outputs.to_bytes(*result) # pylint: disable=E1120
_metrics['total'] = time.time()-start
return output, _metrics