Files
django-stubs/django-stubs/contrib/gis/apps.pyi
Nikita Sobolev d5e45db79b Better linting config (#664)
* Better linting config

* Applies isort on django-stubs, only style changes

* Fixes black and isort compat
2021-07-04 16:16:43 +03:00

9 lines
181 B
Python

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