style(tools): reformat global_options.py with ruff-format

This file predates the adoption of ruff-format and was never reformatted,
because pre-commit only runs on the files touched by a change. GitHub PR
#18871 bumps the copyright year here, which pulls the file into the hook's
scope and makes check_pre_commit fail on a pre-existing formatting
violation unrelated to that change.

Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
This commit is contained in:
Frantisek Hrbata
2026-07-31 12:49:10 +02:00
parent db6b310447
commit 27a72e4660

View File

@@ -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,
}
]