From 353f3fc4bb73cc9967dfb2beff8892e7cb23b7a6 Mon Sep 17 00:00:00 2001 From: Alan Fregtman <941331+darkvertex@users.noreply.github.com> Date: Mon, 26 Jul 2021 10:53:25 -0400 Subject: config.py: Fix line-too-long warning in _parse_list_glob() --- setuptools/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools') diff --git a/setuptools/config.py b/setuptools/config.py index a25b0580..7ab6bfd7 100644 --- a/setuptools/config.py +++ b/setuptools/config.py @@ -260,7 +260,7 @@ class ConfigHandler: def _parse_list_glob(cls, value, separator=','): """Equivalent to _parse_list() but expands any glob patterns using glob(). - However, unlike direct calls to glob(), the resolved results remain relative paths. + However, unlike with glob() calls, the results remain relative paths. :param value: :param separator: List items separator character. -- cgit v1.2.1