From cfe33c19c2ee113ac6835db01ee25e748005497f Mon Sep 17 00:00:00 2001 From: ivkalgin Date: Tue, 6 Feb 2024 21:33:47 +0100 Subject: [PATCH] fixed deny list file path in log (#4) Co-authored-by: i.kalgin --- src/ti_vit/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ti_vit/export.py b/src/ti_vit/export.py index 6ca0ae0..8daa5fc 100644 --- a/src/ti_vit/export.py +++ b/src/ti_vit/export.py @@ -87,7 +87,7 @@ def export( deny_list_path = output_onnx_path.with_suffix(".deny_list") with deny_list_path.open("wt") as deny_list_file: # pylint: disable=unspecified-encoding json.dump(deny_list, fp=deny_list_file, indent=4) - _LOGGER.info(f'deny list created (path = "{output_onnx_path}")') + _LOGGER.info(f'deny list created (path = "{deny_list_path}")') def export_ti_compatible_vit() -> None: # pylint: disable=missing-function-docstring