Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Add python testing documentation #31996

Merged
merged 13 commits into from
Mar 4, 2024
Prev Previous commit
Restyled by prettier-markdown
  • Loading branch information
restyled-commits authored and cecille committed Mar 4, 2024
commit 3093c0e2b588fcebaba1e6bf32974fc981f280db
4 changes: 2 additions & 2 deletions docs/testing/ChipDeviceCtrlAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -675,9 +675,9 @@ sent.
AttributeCache.attributeCache (Attribute.py), which is a dict mapping
endpoints to a list of Cluster (ClusterObjects.py) classes (dict[int,
List[Cluster]]) Access as
returned_object[endpoint_id][<Cluster class>][<Attribute class>] Ex. To
returned_object[endpoint_id][<cluster class>][<Attribute class>] Ex. To
access the OnTime attribute from the OnOff cluster on endpoint 1
returned_object[1][Clusters.OnOff][Clusters.OnOff.Attributes.OnTime]
returned_object[1][clusters.onoff][Clusters.OnOff.Attributes.OnTime]

**Raises**:

Expand Down
Loading