(self, locations=None)
| 13 | geo_format = "kml" |
| 14 | |
| 15 | def __init__(self, locations=None): |
| 16 | # If no locations specified, then we try to build for |
| 17 | # every model in installed applications. |
| 18 | self.locations = self._build_kml_sources(locations) |
| 19 | |
| 20 | def _build_kml_sources(self, sources): |
| 21 | """ |
nothing calls this directly
no test coverage detected