Skip to content

Commit

Permalink
Fix a couple typos found by codespell (pypa#4378)
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri authored May 22, 2024
2 parents 131b6e9 + d6cc7ad commit 20d2926
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ filterwarnings=
# realpython/pytest-mypy#152
ignore:'encoding' argument not specified::pytest_mypy

# TODO: Set encoding when openning/writing tmpdir files with pytest's LocalPath.open
# TODO: Set encoding when opening/writing tmpdir files with pytest's LocalPath.open
# see pypa/setuptools#4326
ignore:'encoding' argument not specified::_pytest

Expand Down
2 changes: 1 addition & 1 deletion setuptools/config/setupcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _apply(
filenames = [*other_files, filepath]

try:
_Distribution.parse_config_files(dist, filenames=filenames) # type: ignore[arg-type] # TODO: fix in disutils stubs
_Distribution.parse_config_files(dist, filenames=filenames) # type: ignore[arg-type] # TODO: fix in distutils stubs
handlers = parse_configuration(
dist, dist.command_options, ignore_option_errors=ignore_option_errors
)
Expand Down

0 comments on commit 20d2926

Please sign in to comment.