dj-database-url, docopt, editdistance, first: check missing defs (#8154)

This commit is contained in:
Shantanu
2022-06-25 12:46:59 +05:30
committed by GitHub
parent 74687b1fa0
commit 22532ba504
5 changed files with 16 additions and 1 deletions

View File

@@ -1 +1,4 @@
version = "0.5.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -1,2 +1,4 @@
# Prior to v0.6, docopt() had only 3 optional args
version = "0.6.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -1 +1,5 @@
version = "0.6.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -1 +1,4 @@
version = "2.0.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -4,6 +4,9 @@ from typing import Any, TypeVar, overload
_T = TypeVar("_T")
_S = TypeVar("_S")
__license__: str
__title__: str
@overload
def first(iterable: Iterable[_T]) -> _T | None: ...
@overload