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

Commit 22ab361

Browse files
committed
Removed extra > in documentation. Also changed aggregate to aggregateList in query
1 parent d51bde9 commit 22ab361

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ from TSIClient import TSIClient as tsi
4141

4242
client = tsi.TSIClient(
4343
enviroment="<your-tsi-env-name>",
44-
applicationName="<your-app-name>">
44+
applicationName="<your-app-name>"
4545
)
4646
````
4747

@@ -55,7 +55,7 @@ data = client.query.getDataById(
5555
timeseries=["timeseries_id1", "timeseries_id2"],
5656
timespan=["2019-12-12T15:35:11.68Z", "2019-12-12T17:02:05.958Z"],
5757
interval="PT5M",
58-
aggregate="avg",
58+
aggregateList=["avg"],
5959
useWarmStore=False
6060
)
6161
````

docs/source/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ is convenient for further statistical analysis.
167167
... timeseries=["timeseries_id1", "timeseries_id2"],
168168
... timespan=["2020-01-25T10:00:11.68Z", "2020-01-26T13:45:11.68Z"],
169169
... interval="PT5M",
170-
... aggregate="avg",
170+
... aggregateList=["avg"],
171171
... useWarmStore=False
172172
... )
173173
>>> data

0 commit comments

Comments
 (0)