mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 13:35:01 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
10 lines
239 B
Python
10 lines
239 B
Python
from django.forms.widgets import Textarea as Textarea
|
|
from typing import Any
|
|
|
|
geo_context: Any
|
|
logger: Any
|
|
|
|
class OpenLayersWidget(Textarea):
|
|
def get_context(self, name: Any, value: Any, attrs: Any): ...
|
|
def map_options(self): ...
|