Missing stubs (#467)

* adding missing db.backends typings and updated test

* added missing stubs

* reformatted files

* removed contrib.postgres.forms

* fixed test
This commit is contained in:
Na'aman Hirschfeld
2020-10-11 11:14:08 +02:00
committed by GitHub
parent 2a732fd257
commit ce370ea79f
188 changed files with 4708 additions and 21 deletions

View File

@@ -0,0 +1,7 @@
from django.apps import AppConfig as AppConfig
from typing import Any
class GISConfig(AppConfig):
name: str = ...
verbose_name: Any = ...
def ready(self) -> None: ...