Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Fix pep-8
Browse files Browse the repository at this point in the history
autopep8 keeps fixing this when I run ./run_tess.sh
  • Loading branch information
timmow committed Jan 28, 2015
1 parent 8e8b439 commit 93e96fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backdrop/transformers/tasks/latest_dataset_value.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def get_read_params(transform_params, latest_timestamp):
read_params['period'] = transform_params['period']
else:
read_params['start_at'] = latest_timestamp
read_params['end_at'] = datetime.datetime.now(pytz.UTC).replace(microsecond=0).isoformat()
read_params['end_at'] = datetime.datetime.now(
pytz.UTC).replace(microsecond=0).isoformat()
read_params['sort_by'] = '_timestamp:descending'
return read_params

Expand Down

0 comments on commit 93e96fd

Please sign in to comment.