mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
8 lines
180 B
Python
8 lines
180 B
Python
from django.apps import AppConfig as AppConfig
|
|
from typing import Any
|
|
|
|
class GISConfig(AppConfig):
|
|
name: str = ...
|
|
verbose_name: Any = ...
|
|
def ready(self) -> None: ...
|