The subdivisions as a list of ISO codes as an immutable set.
(self)
| 86 | |
| 87 | @property |
| 88 | def subdivisions(self): |
| 89 | """The subdivisions as a list of ISO codes as an immutable set.""" |
| 90 | return frozenset(_native_str(x['iso_code']) for x in |
| 91 | self._data.get('subdivisions') or () if 'iso_code' |
| 92 | in x) |
| 93 | |
| 94 | @property |
| 95 | def timezone(self): |
nothing calls this directly
no test coverage detected