Skip to content

Commit

Permalink
And again`
Browse files Browse the repository at this point in the history
  • Loading branch information
willdealtry committed Jun 23, 2024
1 parent 088fdb7 commit dead6f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/arcticdb/version_store/_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2472,8 +2472,8 @@ def is_symbol_pickled(self, symbol: str, as_of: Optional[VersionQueryInput] = No
return self.is_pickled_descriptor(dit.timeseries_descriptor)

def _get_time_range_from_ts(self, desc, min_ts, max_ts):
if desc.stream_descriptor.index.kind != IndexDescriptor.Type.TIMESTAMP or \
desc.stream_descriptor.sorted == SortedValue.UNSORTED or \
if desc.index.kind != IndexDescriptor.Type.TIMESTAMP or \
desc.sorted == SortedValue.UNSORTED or \
min_ts is None or \
max_ts is None:
return datetime64("nat"), datetime64("nat")
Expand Down

0 comments on commit dead6f5

Please sign in to comment.