(self)
| 1174 | return f"Recurring rule for {channel_name}" |
| 1175 | |
| 1176 | def cleaned_days(self): |
| 1177 | try: |
| 1178 | return sorted({int(d) for d in (self.days_of_week or []) if 0 <= int(d) <= 6}) |
| 1179 | except Exception: |
| 1180 | return [] |
no outgoing calls
no test coverage detected