Files
django-stubs/django-stubs/contrib/gis/gdal/driver.pyi
Na'aman Hirschfeld ce370ea79f Missing stubs (#467)
* adding missing db.backends typings and updated test

* added missing stubs

* reformatted files

* removed contrib.postgres.forms

* fixed test
2020-10-11 12:14:08 +03:00

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): ...