mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
10 lines
234 B
Python
10 lines
234 B
Python
from django.contrib import admin as admin
|
|
from typing import Any
|
|
|
|
class FlatPageAdmin(admin.ModelAdmin):
|
|
form: Any = ...
|
|
fieldsets: Any = ...
|
|
list_display: Any = ...
|
|
list_filter: Any = ...
|
|
search_fields: Any = ...
|