mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 16:27:09 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
13 lines
327 B
Python
13 lines
327 B
Python
from django.contrib.gis.gdal.base import GDALBase as GDALBase
|
|
from typing import Any
|
|
|
|
class Driver(GDALBase):
|
|
ptr: Any = ...
|
|
def __init__(self, dr_input: Any) -> None: ...
|
|
@classmethod
|
|
def ensure_registered(cls) -> None: ...
|
|
@classmethod
|
|
def driver_count(cls): ...
|
|
@property
|
|
def name(self): ...
|