Return the max calendar datetime
(self)
| 111 | return self.cals[idx] |
| 112 | |
| 113 | def max(self) -> pd.Timestamp: |
| 114 | """ |
| 115 | Return the max calendar datetime |
| 116 | """ |
| 117 | return max(self.cals) |
| 118 | |
| 119 | def align_idx(self, time_point, tp_type="start") -> int: |
| 120 | """ |
no outgoing calls