We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b116c4d + 16541a9 commit e589739Copy full SHA for e589739
1 file changed
scripts/maintainer/maintainer_scripts_path.py
@@ -0,0 +1,20 @@
1
+"""Add our Python library directories for maintainer scripts to the module search path.
2
+
3
+Usage:
4
5
+ import maintainer_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
12
+import os
13
+import sys
14
15
+sys.path.append(os.path.join(os.path.dirname(__file__),
16
+ os.path.pardir, os.path.pardir,
17
+ 'framework', 'scripts'))
18
19
20
+ 'framework', 'util'))
0 commit comments