We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31f60e3 commit 4d6ae6aCopy full SHA for 4d6ae6a
fmatch/matcher.py
@@ -248,7 +248,7 @@ def get_agg_metric_query(
248
self, uuids: List[str],
249
index: str,
250
metrics: Dict[str, Any],
251
- timestamp_field: str="timestamp"):
+ timestamp_field: str = "timestamp"):
252
"""burner_metric_query will query for specific metrics data.
253
254
Args:
@@ -269,7 +269,7 @@ def get_agg_metric_query(
269
query = Q(
270
"bool",
271
must=[
272
- Q("terms", **{self.uuid_field +".keyword": uuids}),
+ Q("terms", **{self.uuid_field + ".keyword": uuids}),
273
metric_query,
274
],
275
)
0 commit comments