(self, source_json, tzpath, v1=False)
| 2167 | |
| 2168 | class ZoneInfoData: |
| 2169 | def __init__(self, source_json, tzpath, v1=False): |
| 2170 | self.tzpath = pathlib.Path(tzpath) |
| 2171 | self.keys = [] |
| 2172 | self.v1 = v1 |
| 2173 | self._populate_tzpath(source_json) |
| 2174 | |
| 2175 | def path_from_key(self, key): |
| 2176 | return self.tzpath / key |
nothing calls this directly
no test coverage detected