Skip to content

Commit

Permalink
Fixed an unused object
Browse files Browse the repository at this point in the history
  • Loading branch information
austina-csa committed Dec 16, 2024
1 parent 9c9c553 commit 92d92e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_testing/TC_IDM_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async def all_type_attributes_for_cluster(self, cluster: ClusterObjects.Cluster,

elif desired_type == IntFlag:
attributes_class = getattr(cluster, 'Attributes')
all_attributes_of_type = [cluster.Attributes.FeatureMap]
all_attributes_of_type = [attributes_class.FeatureMap]
else:
all_attributes_of_type = [attribute for attribute in all_attributes if attribute.attribute_type ==
ClusterObjects.ClusterObjectFieldDescriptor(Type=desired_type)]
Expand Down

0 comments on commit 92d92e0

Please sign in to comment.