Skip to content

Commit

Permalink
#984 remove timespec
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielwol committed Jul 19, 2024
1 parent 2912a13 commit cd08822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions volumes/ecocounter/pull_data_from_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def getFlowData(token: str, flow_id: int, startDate: datetime, endDate: datetime
f'{URL}/api/data/site/{flow_id}',
headers={'Authorization': f'Bearer {token}'},
params={
'begin': requestStart.isoformat(timespec='seconds'),
'end': requestEnd.isoformat(timespec='seconds'),
'begin': requestStart.isoformat(),
'end': requestEnd.isoformat(),
'complete': 'false',
'step': '15m'
}
Expand Down

0 comments on commit cd08822

Please sign in to comment.