From 947f00bc565469ac549481fb78887d204b7824e5 Mon Sep 17 00:00:00 2001 From: Sergey Lyubimtsev Date: Wed, 27 Oct 2021 11:56:17 +0300 Subject: [PATCH] Fix for openvino.tools.* module load issues. (#8219) --- tools/benchmark_tool/openvino/tools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/benchmark_tool/openvino/tools/__init__.py b/tools/benchmark_tool/openvino/tools/__init__.py index 60324954ef5..9dcdeb46b4d 100644 --- a/tools/benchmark_tool/openvino/tools/__init__.py +++ b/tools/benchmark_tool/openvino/tools/__init__.py @@ -1,3 +1,3 @@ # Copyright (C) 2018-2021 Intel Corporation # SPDX-License-Identifier: Apache-2.0 - +__path__ = __import__('pkgutil').extend_path(__path__, __name__)