Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Mar 4, 2025
1 parent 6aac44d commit c368999
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setuptools/config/setupcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def _apply(
filenames = [*other_files, filepath]

try:
_Distribution.parse_config_files(dist, filenames=filenames) # type: ignore[arg-type] # Vendored version of setuptools supports PathLike
_Distribution.parse_config_files(dist, filenames=filenames) # type: ignore[arg-type] # Vendored version of distutils supports PathLike
handlers = parse_configuration(
dist, dist.command_options, ignore_option_errors=ignore_option_errors
)
Expand Down
2 changes: 1 addition & 1 deletion setuptools/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def __init__(
self.py_limited_api = py_limited_api
super().__init__(
name,
sources, # type: ignore[arg-type] # Vendored version of setuptools supports PathLike
sources, # type: ignore[arg-type] # Vendored version of distutils supports PathLike
*args,
**kw,
)
Expand Down

0 comments on commit c368999

Please sign in to comment.