Skip to content

Commit cd3ba7d

Browse files
authored
Merge pull request #4644 from DimitriPapadopoulos/codespell
Fix a couple typos found by codespell
2 parents 5e27b2a + 8513d29 commit cd3ba7d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/development/developer-guide.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Code conventions and other practices
138138
------------------------------------
139139

140140
Setuptools utilizes the `skeleton <https://github.com/jaraco/skeleton>`_
141-
framework as a foundation for sharing re-usable maintenance tasks
141+
framework as a foundation for sharing reusable maintenance tasks
142142
across different projects in the ecosystem.
143143

144144
This also means that the project adheres to the same coding conventions

mypy.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ disable_error_code = import-not-found
4848
# - jaraco.path: https://github.com/jaraco/jaraco.path/issues/2
4949
# - jaraco.test: https://github.com/jaraco/jaraco.test/issues/7
5050
# - jaraco.text: https://github.com/jaraco/jaraco.text/issues/17
51-
# - wheel: does not intend on exposing a programatic API https://github.com/pypa/wheel/pull/610#issuecomment-2081687671
51+
# - wheel: does not intend on exposing a programmatic API https://github.com/pypa/wheel/pull/610#issuecomment-2081687671
5252
[mypy-distutils.*,jaraco.develop,jaraco.envs,jaraco.packaging.*,jaraco.path,jaraco.test.*,jaraco.text,wheel.*]
5353
ignore_missing_imports = True
5454

setuptools/command/easy_install.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2022,11 +2022,11 @@ def is_python_script(script_text, filename):
20222022

20232023
try:
20242024
from os import (
2025-
chmod as _chmod, # pyright: ignore[reportAssignmentType] # Loosing type-safety w/ pyright, but that's ok
2025+
chmod as _chmod, # pyright: ignore[reportAssignmentType] # Losing type-safety w/ pyright, but that's ok
20262026
)
20272027
except ImportError:
20282028
# Jython compatibility
2029-
def _chmod(*args: object, **kwargs: object) -> None: # type: ignore[misc] # Mypy re-uses the imported definition anyway
2029+
def _chmod(*args: object, **kwargs: object) -> None: # type: ignore[misc] # Mypy reuses the imported definition anyway
20302030
pass
20312031

20322032

0 commit comments

Comments
 (0)