From e0d09330925cc0204e415692ca92daa83f947d74 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Wed, 3 Jan 2024 22:20:27 -0600 Subject: [PATCH] fix missing param --- api/onnx_web/chain/result.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/onnx_web/chain/result.py b/api/onnx_web/chain/result.py index 04d02f3c..93643eba 100644 --- a/api/onnx_web/chain/result.py +++ b/api/onnx_web/chain/result.py @@ -69,7 +69,7 @@ class ImageMetadata: return (model_name, model_hash or "unknown") - def to_exif(self, server) -> str: + def to_exif(self, server, output: List[str]) -> str: model_name, model_hash = self.get_model_hash() hash_map = { model_name: model_hash,