diff --git a/tools/idf_py_actions/global_options.py b/tools/idf_py_actions/global_options.py index 3dcf2894566..8d1ca5a6a8c 100644 --- a/tools/idf_py_actions/global_options.py +++ b/tools/idf_py_actions/global_options.py @@ -1,8 +1,10 @@ # SPDX-FileCopyrightText: 2022-2026 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: Apache-2.0 -global_options = [{ - 'names': ['-D', '--define-cache-entry'], - 'help': 'Create a cmake cache entry.', - 'scope': 'global', - 'multiple': True, -}] +global_options = [ + { + 'names': ['-D', '--define-cache-entry'], + 'help': 'Create a cmake cache entry.', + 'scope': 'global', + 'multiple': True, + } +]