In the COVID excess deaths [example](https://causalpy.readthedocs.io/en/latest/notebooks/its_covid.html), the data is split into pre and post treatment with ``` self.datapre = data[data.index <= self.treatment_time] self.datapost = data[data.index > self.treatment_time] ``` However, when inspecting result.datapre we see that 2020-01-01 is included with the label `pre=False`  If 2020-01-01 should be in the post set, as the df says, then the splitting should be changed to: ``` self.datapre = data[data.index < self.treatment_time] self.datapost = data[data.index >= self.treatment_time] ``` If it should be in the pre set, then `deaths_and_temps_england_wales.csv` needs to be updated so that `pre=True` for this date