Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit cb3156c

Browse files
committed
Add support for custom indexes for query in the DataFrameClient (#785)
1 parent 49165be commit cb3156c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

influxdb/helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __new__(cls, *args, **kwargs):
8282
allowed_time_precisions = ['h', 'm', 's', 'ms', 'u', 'ns', None]
8383
if cls._time_precision not in allowed_time_precisions:
8484
raise AttributeError(
85-
'In {0}, time_precision is set, but invalid use any of {1}.'
85+
'In {}, time_precision is set, but invalid use any of {}.'
8686
.format(cls.__name__, ','.join(allowed_time_precisions)))
8787

8888
cls._retention_policy = getattr(_meta, 'retention_policy', None)

0 commit comments

Comments
 (0)