Skip to content

Commit fc4bfd7

Browse files
committed
drop unused kw-only arg
1 parent 7effca8 commit fc4bfd7

File tree

1 file changed

+2
-9
lines changed
  • stubs/setuptools/setuptools/_distutils/compilers/C

1 file changed

+2
-9
lines changed

stubs/setuptools/setuptools/_distutils/compilers/C/base.pyi

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -174,17 +174,10 @@ class Compiler:
174174
self, func: Callable[[Unpack[_Ts]], Unused], args: tuple[Unpack[_Ts]], msg: str | None = None, level: int = 1
175175
) -> None: ...
176176
@overload
177-
def spawn(
178-
self, cmd: Sequence[StrOrBytesPath], *, search_path: Literal[False], verbose: Unused = False, env: _ENV | None = None
179-
) -> None: ...
177+
def spawn(self, cmd: Sequence[StrOrBytesPath], *, search_path: Literal[False], env: _ENV | None = None) -> None: ...
180178
@overload
181179
def spawn(
182-
self,
183-
cmd: MutableSequence[bytes | StrPath],
184-
*,
185-
search_path: Literal[True] = True,
186-
verbose: Unused = False,
187-
env: _ENV | None = None,
180+
self, cmd: MutableSequence[bytes | StrPath], *, search_path: Literal[True] = True, env: _ENV | None = None
188181
) -> None: ...
189182
def mkpath(self, name: str, mode: int = 0o777) -> None: ...
190183
@overload

0 commit comments

Comments
 (0)