You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove temporary function aliases in matter_testing.py
Currently matter_testing.py contains temporary aliases for functions from the matchers, timeoperations, and conversions modules. These aliases should be removed after transition period and all code should be updated to use the module-qualified names directly. Upd (Feb 20, 2025): aliases to decorators.py module should be removed as well
For example:
Replace type_matches with matchers.is_type
Replace id_str with conversions.format_decimal_and_hex
Replace cluster_id_str with conversions.cluster_id_str
Steps:
Search for all usages of these aliased functions
Replace with module-qualified versions
Remove the aliases from matter_testing.py
Update any documentation referring to these functions
The text was updated successfully, but these errors were encountered:
Remove temporary function aliases in matter_testing.py
Currently matter_testing.py contains temporary aliases for functions from the matchers, timeoperations, and conversions modules. These aliases should be removed after transition period and all code should be updated to use the module-qualified names directly. Upd (Feb 20, 2025): aliases to decorators.py module should be removed as well
For example:
type_matches
withmatchers.is_type
id_str
withconversions.format_decimal_and_hex
cluster_id_str
withconversions.cluster_id_str
Steps:
The text was updated successfully, but these errors were encountered: