blob: fd39ce3e9a298bbc91ba0b2d3b120c525ef004fb [file] [log] [blame]
Harry Ramseye1d6f742024-11-04 14:51:35 +00001"""Add our Python library directory to the module search path.
2
3Usage:
4
5 import framework_scripts_path # pylint: disable=unused-import
6"""
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,
Harry Ramseyfb4824b2024-11-04 16:41:22 +000017 os.path.pardir,
Harry Ramseye1d6f742024-11-04 14:51:35 +000018 'framework', 'scripts'))