mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 21:46:43 +08:00
9 lines
188 B
Python
9 lines
188 B
Python
from typing import Optional
|
|
|
|
from django.contrib.sitemaps import Sitemap
|
|
from django.db.models.query import QuerySet
|
|
|
|
|
|
class FlatPageSitemap(Sitemap):
|
|
def items(self) -> QuerySet: ...
|