| 11 | |
| 12 | |
| 13 | class SimpleSitemap(Sitemap): |
| 14 | changefreq = "never" |
| 15 | priority = 0.5 |
| 16 | location = "/location/" |
| 17 | lastmod = date.today() |
| 18 | |
| 19 | def items(self): |
| 20 | return [object()] |
| 21 | |
| 22 | |
| 23 | class SimplePagedSitemap(Sitemap): |
no outgoing calls
no test coverage detected
searching dependent graphs…