13 lines
332 B
Python
13 lines
332 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# flake8: noqa
|
|
# type: ignore
|
|
|
|
import warnings
|
|
|
|
warnings.warn(message="The module is private and following namespace " "`pyopenvino` will be removed in the future", category=FutureWarning)
|
|
|
|
from openvino._pyopenvino import *
|