(key)
| 200 | key = next(iter(self.zones())) |
| 201 | |
| 202 | def from_file_nokey(key): |
| 203 | with open(self.zoneinfo_data.path_from_key(key), "rb") as f: |
| 204 | return self.klass.from_file(f) |
| 205 | |
| 206 | constructors = ( |
| 207 | ("Primary constructor", self.klass, key), |
nothing calls this directly
no test coverage detected