Skip to content

Commit

Permalink
Restyled by isort
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and ReneJosefsen committed Oct 1, 2024
1 parent a345b95 commit ab9a0fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/tools/PICS-generator/PICSGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@
import xml.etree.ElementTree as ET

import chip.clusters as Clusters
from pics_generator_support import map_cluster_name_to_pics_xml, pics_xml_file_list_loader
from rich.console import Console

from pics_generator_support import pics_xml_file_list_loader, map_cluster_name_to_pics_xml

# Add the path to python_testing folder, in order to be able to import from matter_testing_support
sys.path.append(os.path.abspath(sys.path[0] + "/../../python_testing"))
from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main # noqa: E402
Expand Down
6 changes: 3 additions & 3 deletions src/tools/PICS-generator/XMLPICSValidator.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
#

import argparse
import sys
import os
from pics_generator_support import pics_xml_file_list_loader, map_cluster_name_to_pics_xml
import sys

from pics_generator_support import map_cluster_name_to_pics_xml, pics_xml_file_list_loader

# Add the path to python_testing folder, in order to be able to import from matter_testing_support
sys.path.append(os.path.abspath(sys.path[0] + "/../../python_testing"))
from spec_parsing_support import build_xml_clusters # noqa: E402


parser = argparse.ArgumentParser()
parser.add_argument('--pics-template', required=True)
args, unknown = parser.parse_known_args()
Expand Down

0 comments on commit ab9a0fc

Please sign in to comment.