Skip to content

Commit 85c815d

Browse files
committed
Fix unintentional mistake in config/pyproject
1 parent 5d4fbb3 commit 85c815d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setuptools/config/pyprojecttoml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def validate(config: dict, filepath: _Path) -> bool:
3030
from . import _validate_pyproject as validator
3131

3232
try:
33-
return validator._validate(config)
33+
return validator.validate(config)
3434
except validator.ValidationError as ex:
3535
_logger.error(f"configuration error: {ex.summary}") # type: ignore
3636
_logger.debug(ex.details) # type: ignore

0 commit comments

Comments
 (0)