Skip to content

Commit b07431f

Browse files
restyled-commitsj-ororke
authored andcommitted
Restyled by autopep8
1 parent 604227d commit b07431f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/python_testing/support_modules/idm_support.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040

4141
def get_all_cmds_for_cluster_id(cid: int) -> list[Clusters.ClusterObjects.ClusterCommand]:
4242
"""Get all commands for a given cluster ID.
43-
43+
4444
Args:
4545
cid: Cluster ID to get commands for
46-
46+
4747
Returns:
4848
List of command classes for the cluster, or empty list if cluster has no commands
49-
49+
5050
Note:
5151
Some clusters don't have a Commands attribute (they have no commands defined).
5252
Returning an empty list allows callers to safely iterate through all clusters
@@ -60,13 +60,13 @@ def get_all_cmds_for_cluster_id(cid: int) -> list[Clusters.ClusterObjects.Cluste
6060

6161
def client_cmd(cmd_class):
6262
"""Filter to check if a command class is a client command.
63-
63+
6464
Args:
6565
cmd_class: Command class to check
66-
66+
6767
Returns:
6868
The command class if it's a client command, None otherwise
69-
69+
7070
Note:
7171
Inspect returns all classes, not just command classes. Some builtin classes
7272
won't have the is_client attribute, so we check for it explicitly.
@@ -93,9 +93,9 @@ def __init__(self, test_instance):
9393

9494
class IDMBaseTest(MatterBaseTest):
9595
"""Base test class for IDM tests with shared functionality."""
96-
96+
9797
ROOT_NODE_ENDPOINT_ID = 0
98-
98+
9999
# ========================================================================
100100
# Descriptor and Cluster Reading Utilities
101101
# ========================================================================

0 commit comments

Comments
 (0)