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
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,14 +93,14 @@ metric_object_list = MetricsList(metric_data) # metric_object_list will be initi
93
93
# metrics downloaded using get_metric query
94
94
95
95
# We can see what each of the metric objects look like
96
-
for item inmetrics_object_list:
96
+
for item inmetric_object_list:
97
97
print(item.metric_name, item.label_config, "\n")
98
98
```
99
99
100
100
Each of the items in the `metric_object_list` are initialized as a `Metric` class object. Let's look at one of the metrics from the `metric_object_list` to learn more about the `Metric` class:
101
101
102
102
```python
103
-
my_metric_object =metrics_object_list[1] # one of the metrics from the list
103
+
my_metric_object =metric_object_list[1] # one of the metrics from the list
0 commit comments