Skip to content

Set allow_tape=None as default for TimeSeries.get

This PR modifies the defaults for TimeSeries{Dict}.get to include allow_tape=None (rather than False). This ends up doing the following

  • TimeSeries.find gets called with allow_tape=False, then
  • TimeSeries.fetch gets called with allow_tape=None

This should minimise the requirement of using a tape, but should eventually get data to the user.

Merge request reports