Skip to content

Commit

Permalink
Fixed typo in variable name
Browse files Browse the repository at this point in the history
Updated variable name in definition but missed changing it in its usage in 'total_entries'.
  • Loading branch information
Mahadik, Mukul Chandrakant authored and Mahadik, Mukul Chandrakant committed Aug 29, 2023
1 parent 3c92c4b commit 776ba50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emission/storage/timeseries/builtin_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def count_data(self, key, extra_query_list):
logging.debug("count_data timeseries called")
created_query = self._get_query([key], extra_query_list)
result_dataset = self.get_timeseries_db(key)
total_entries = result_set.count_documents(created_query)
total_entries = result_dataset.count_documents(created_query)
return total_entries


0 comments on commit 776ba50

Please sign in to comment.