(tzstr)
| 2702 | |
| 2703 | TZ = tz.tzstr('UTC+04') |
| 2704 | def parse_tzstr(tzstr): |
| 2705 | if tzstr is None: |
| 2706 | raise ValueError('Invalid tzstr') |
| 2707 | |
| 2708 | return tz.tzstr(tzstr) |
| 2709 | |
| 2710 | rr = rrulestr(rrstr, tzids=parse_tzstr) |
| 2711 |
no outgoing calls
no test coverage detected