From 1605d727cd8dd715fadac96d617a0682caa5dc4f Mon Sep 17 00:00:00 2001 From: "i.kalgin" Date: Tue, 6 Feb 2024 21:26:45 +0100 Subject: [PATCH] fixed deny list file path in log --- 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