mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-20 10:51:16 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
11 lines
200 B
Python
11 lines
200 B
Python
from typing import Any
|
|
|
|
class GDALException(Exception): ...
|
|
class SRSException(Exception): ...
|
|
|
|
OGRERR_DICT: Any
|
|
CPLERR_DICT: Any
|
|
ERR_NONE: int
|
|
|
|
def check_err(code: Any, cpl: bool = ...) -> None: ...
|