mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 04:54:48 +08:00
8 lines
187 B
Python
8 lines
187 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: ...
|