From 42b93bed4219e3bda3518ed8efcfd9f7c55dea7b Mon Sep 17 00:00:00 2001 From: Sergey Lyubimtsev Date: Wed, 8 Sep 2021 19:28:00 +0300 Subject: [PATCH] Add support of pkgutil-style namespace packages (#7422) * Add support of pkgutil-style namespace packages * fix linter issue (mypy) * fix linter issue (mypy) * ignore # mypy issue #1422 * E261 at least two spaces before inline comment --- inference-engine/ie_bridges/python/src/openvino/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/inference-engine/ie_bridges/python/src/openvino/__init__.py b/inference-engine/ie_bridges/python/src/openvino/__init__.py index 7039467483f..962d369fd34 100644 --- a/inference-engine/ie_bridges/python/src/openvino/__init__.py +++ b/inference-engine/ie_bridges/python/src/openvino/__init__.py @@ -1,3 +1,4 @@ # -*- coding: utf-8 -*- # Copyright (C) 2018-2021 Intel Corporation # SPDX-License-Identifier: Apache-2.0 +__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore # mypy issue #1422