aboutsummaryrefslogtreecommitdiff
path: root/scripts/framework_scripts_path.py
blob: 4d4a440c23bf59a7080fdd00385283cb2c61164f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Add our Python library directory to the module search path.

Usage:

    import framework_scripts_path # pylint: disable=unused-import
"""

# Copyright The Mbed TLS Contributors
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
#

import os
import sys

sys.path.append(os.path.join(os.path.dirname(__file__),
                             os.path.pardir,
                             'framework', 'scripts'))