Skip to content

Commit 07b991d

Browse files
Rename framework_path to framework_scripts_path
This name is more descriptive of its purpose, since it actually adds framework/scripts to the path rather than just framework/ Signed-off-by: David Horstmann <[email protected]>
1 parent abc0969 commit 07b991d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

scripts/abi_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101

102102
import xml.etree.ElementTree as ET
103103

104-
import framework_path # pylint: disable=unused-import
104+
import framework_scripts_path # pylint: disable=unused-import
105105
from mbedtls_framework import build_tree
106106

107107

scripts/code_size_compare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import typing
2222
from enum import Enum
2323

24-
import framework_path # pylint: disable=unused-import
24+
import framework_scripts_path # pylint: disable=unused-import
2525
from mbedtls_framework import build_tree
2626
from mbedtls_framework import logging_util
2727
from mbedtls_framework import typing_util

scripts/framework_path.py renamed to scripts/framework_scripts_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Usage:
44
5-
import framework_path # pylint: disable=unused-import
5+
import framework_scripts_path # pylint: disable=unused-import
66
"""
77

88
# Copyright The Mbed TLS Contributors

scripts/generate_driver_wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import jsonschema
1919
import jinja2
2020

21-
import framework_path # pylint: disable=unused-import
21+
import framework_scripts_path # pylint: disable=unused-import
2222
from mbedtls_framework import build_tree
2323

2424
JSONSchema = NewType('JSONSchema', object)

scripts/generate_psa_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import os
1818
import sys
1919

20-
import framework_path # pylint: disable=unused-import
20+
import framework_scripts_path # pylint: disable=unused-import
2121
from mbedtls_framework import build_tree
2222
from mbedtls_framework import macro_collector
2323

scripts/generate_ssl_debug_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import textwrap
1616
import argparse
1717

18-
import framework_path # pylint: disable=unused-import
18+
import framework_scripts_path # pylint: disable=unused-import
1919
from mbedtls_framework import build_tree
2020

2121

scripts/min_requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from typing import List, Optional
1717

18-
import framework_path # pylint: disable=unused-import
18+
import framework_scripts_path # pylint: disable=unused-import
1919
from mbedtls_framework import typing_util
2020

2121
def pylint_doesn_t_notice_that_certain_types_are_used_in_annotations(

0 commit comments

Comments
 (0)