mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 22:41:55 +08:00
* Fill remaining missing hints with Any & disallow partial hints * ModelFormatDict -> _ModelFormatDict * Fixes * Add __init__ return hints * Add suppression
12 lines
284 B
Python
12 lines
284 B
Python
from logging import Logger
|
|
from typing import Any
|
|
|
|
from django.forms.widgets import Textarea as Textarea
|
|
|
|
geo_context: Any
|
|
logger: Logger
|
|
|
|
class OpenLayersWidget(Textarea):
|
|
def get_context(self, name: Any, value: Any, attrs: Any) -> Any: ...
|
|
def map_options(self) -> Any: ...
|