Skip to content

Commit 2bb4ed4

Browse files
committed
Address feedback on tuple
1 parent b1d1efb commit 2bb4ed4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/setuptools/setuptools/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ __version__: str
4848

4949
@type_check_only
5050
class _BuildInfo(TypedDict):
51-
sources: list[str] | tuple[str]
52-
obj_deps: NotRequired[dict[str, list[str] | tuple[str]]]
51+
sources: list[str] | tuple[str, ...]
52+
obj_deps: NotRequired[dict[str, list[str] | tuple[str, ...]]]
5353
macros: NotRequired[list[tuple[str, str] | tuple[str]]]
5454
include_dirs: NotRequired[list[str]]
5555
cflags: NotRequired[list[str]]

0 commit comments

Comments
 (0)