blob: 4d4a440c23bf59a7080fdd00385283cb2c61164f [file] [log] [blame]
David Horstmann875c32f2024-05-03 14:50:58 +01001"""Add our Python library directory to the module search path.
2
3Usage:
4
David Horstmannecd6d012024-05-10 16:58:31 +01005 import framework_scripts_path # pylint: disable=unused-import
David Horstmann875c32f2024-05-03 14:50:58 +01006"""
7
8# Copyright The Mbed TLS Contributors
9# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
10#
11
12import os
13import sys
14
15sys.path.append(os.path.join(os.path.dirname(__file__),
16 os.path.pardir,
17 'framework', 'scripts'))