Skip to content

Commit 13aa813

Browse files
committed
Fix restyle issues
1 parent 9041aa4 commit 13aa813

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

src/tools/PICS-generator/README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ If a device has already been commissioned, the tool can be executed like this:
8686
python3 PICSGenerator.py --pics-template <pathToPicsTemplateFolder> --pics-output <outputPath>
8787
```
8888

89-
The tool can be used to validate against the available spec versions, this can be done by providing the following tag in the command, if no path is provided it will use the current scrape of Master. An example path is "connectedhomeip/data_model/master".
89+
The tool can be used to validate against the available spec versions, this can
90+
be done by providing the following tag in the command, if no path is provided it
91+
will use the current scrape of Master. An example path is
92+
"connectedhomeip/data_model/master".
9093

9194
```
9295
python3 PICSGenerator.py --pics-template <pathToPicsTemplateFolder> --dm <pathToDmScrapeFolder>
@@ -109,8 +112,11 @@ To run the XMLPICSValidator, the following command can be used:
109112
python3 XMLPICSValidator.py --pics-template <pathToPicsTemplateFolder>
110113
```
111114

112-
The tool can be used to validate against the available spec versions, this can be done by providing the following tag in the command, if no path is provided it will use the current scrape of Master. An example path is "connectedhomeip/data_model/master".
115+
The tool can be used to validate against the available spec versions, this can
116+
be done by providing the following tag in the command, if no path is provided it
117+
will use the current scrape of Master. An example path is
118+
"connectedhomeip/data_model/master".
113119

114120
```
115121
python3 XMLPICSValidator.py --pics-template <pathToPicsTemplateFolder> --dm <pathToDmScrapeFolder>
116-
```
122+
```

src/tools/PICS-generator/XMLPICSValidator.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import os
2020
import sys
2121
from pathlib import Path
22+
2223
from pics_generator_support import map_cluster_name_to_pics_xml, pics_xml_file_list_loader
2324

2425
# Add the path to python_testing folder, in order to be able to import from matter_testing_support

0 commit comments

Comments
 (0)