https://github.com/microsoft/msticpy/blob/main/msticpy/analysis/timeseries.py#L293-L299
Missing logic for time series anomaly detection for the case of
(result["score"] > score_threshold) & (result["seasonal"] == 0)
whereas >0 and <0 are covered.
It leads to an error in the later typecasting to int64.
Not sure if change from lt/gt to le/ge, or a different approach is most appropriate.