From 86cf0b11479277695e110d2db48618a2c3bf783b Mon Sep 17 00:00:00 2001 From: DingZQ Date: Sat, 15 Feb 2025 15:27:34 +0800 Subject: [PATCH] Refine --- influxdb_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb_api.py b/influxdb_api.py index 21f891a..edebbf4 100644 --- a/influxdb_api.py +++ b/influxdb_api.py @@ -1375,7 +1375,7 @@ def query_tags(bucket: str, measurement: str, client: InfluxDBClient=client) -> for record in table.records: tag_keys.append(record.get_value()) - tag_keys + return tag_keys # 示例调用 if __name__ == "__main__":