the following code fails ```python ts = TimeSeries(default=1) print(ts+1) ``` with `AttributeError: 'int' object has no attribute 'default'`. The following works properly ```python ts = TimeSeries(default=1) print(ts-1) ```
the following code fails
with
AttributeError: 'int' object has no attribute 'default'.The following works properly