mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-13 15:31:55 +08:00
* Better linting config * Applies isort on django-stubs, only style changes * Fixes black and isort compat
9 lines
181 B
Python
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: ...
|