(fpath)
| 141 | pass |
| 142 | |
| 143 | def valid_key(fpath): |
| 144 | try: |
| 145 | with open(fpath, "rb") as f: |
| 146 | return f.read(4) == b"TZif" |
| 147 | except Exception: # pragma: nocover |
| 148 | return False |
| 149 | |
| 150 | for tz_root in TZPATH: |
| 151 | if not os.path.exists(tz_root): |
no test coverage detected
searching dependent graphs…