From d67a7bc58efe6aa865eb45023ee9baa2ae999608 Mon Sep 17 00:00:00 2001 From: Austin Bozowski Date: Fri, 10 Jun 2022 18:09:29 +0000 Subject: [PATCH] [no ci] restyle --- examples/chef/README.md | 6 +++--- examples/chef/chef.py | 8 ++++---- examples/chef/cicd_config.json | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/examples/chef/README.md b/examples/chef/README.md index b02f2c6034ce61..e6d9bf57ac219e 100644 --- a/examples/chef/README.md +++ b/examples/chef/README.md @@ -116,6 +116,6 @@ which run in parallel. These jobs use a platform-specific image with base `chip-build`. The build jobs call chef with the options `--ci -t `. The `--ci` -option will execute builds for all devices specified in `cicd_config["ci_allow_list"]` defined -in `chef.py` (so long as these devices are also in `/devices`) on the specified -platform. +option will execute builds for all devices specified in +`cicd_config["ci_allow_list"]` defined in `chef.py` (so long as these devices +are also in `/devices`) on the specified platform. diff --git a/examples/chef/chef.py b/examples/chef/chef.py index 63e31491e2697d..005878aef9680d 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -226,7 +226,7 @@ def bundle_nrfconnect(device_name: str) -> None: "scripts", "flashing") gen_script_path = os.path.join(scripts_root, - "gen_flashing_script.py") + "gen_flashing_script.py") sub_dir = os.path.join(_CD_STAGING_DIR, device_name) os.mkdir(sub_dir) for zephyr_ext in zephyr_exts: @@ -259,10 +259,10 @@ def bundle_esp32(device_name: str) -> None: device_name: The device to bundle. """ esp_root = os.path.join(_CHEF_SCRIPT_PATH, - "esp32", - "build") + "esp32", + "build") manifest_file = os.path.join(esp_root, - "chip-shell.flashbundle.txt") + "chip-shell.flashbundle.txt") with open(manifest_file) as manifest: for item in manifest: item = item.replace("\n", "") diff --git a/examples/chef/cicd_config.json b/examples/chef/cicd_config.json index 5504346c279e69..6ae613857be7fc 100644 --- a/examples/chef/cicd_config.json +++ b/examples/chef/cicd_config.json @@ -1,8 +1,8 @@ { - "ci_allow_list": ["lighting-app"], - "cd_platforms": { - "linux": "linux_x86", - "esp32": "esp32-m5stack", - "nrfconnect": "nrf-nrf52840dk" - } + "ci_allow_list": ["lighting-app"], + "cd_platforms": { + "linux": "linux_x86", + "esp32": "esp32-m5stack", + "nrfconnect": "nrf-nrf52840dk" + } }