Skip to content

Commit 41d93b2

Browse files
committed
fix: add missing @type_check_only
1 parent 3bfbabc commit 41d93b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

stubs/tqdm/tqdm/contrib/concurrent.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from _typeshed import SupportsWrite
22
from collections.abc import Callable, Iterable, Mapping
3-
from typing import Any, TypedDict, TypeVar, overload
3+
from typing import Any, TypedDict, TypeVar, overload, type_check_only
44
from typing_extensions import Unpack
55

66
from ..std import tqdm
@@ -14,6 +14,7 @@ _T3 = TypeVar("_T3")
1414
_T4 = TypeVar("_T4")
1515
_T5 = TypeVar("_T5")
1616

17+
@type_check_only
1718
class _TqdmKwargs(TypedDict, total=False):
1819
# Concurrent-specific parameters
1920
tqdm_class: type[tqdm[object]]

0 commit comments

Comments
 (0)