diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 12:46:30 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 12:46:30 -0500 |
commit | 3d4d8b9dde61b87271861b8c7ebeb168ac4fa72b (patch) | |
tree | ffbf9cd5a02337ced626892b672b7e21bd305717 /setuptools/dep_util.py | |
parent | a0e8d0568d84e29066a5b45aade5aafe28237ec0 (diff) | |
download | external_python_setuptools-3d4d8b9dde61b87271861b8c7ebeb168ac4fa72b.tar.gz external_python_setuptools-3d4d8b9dde61b87271861b8c7ebeb168ac4fa72b.tar.bz2 external_python_setuptools-3d4d8b9dde61b87271861b8c7ebeb168ac4fa72b.zip |
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/dep_util.py')
-rw-r--r-- | setuptools/dep_util.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/dep_util.py b/setuptools/dep_util.py index 2931c13e..521eb716 100644 --- a/setuptools/dep_util.py +++ b/setuptools/dep_util.py @@ -1,5 +1,6 @@ from distutils.dep_util import newer_group + # yes, this is was almost entirely copy-pasted from # 'newer_pairwise()', this is just another convenience # function. @@ -10,7 +11,8 @@ def newer_pairwise_group(sources_groups, targets): of 'newer_group()'. """ if len(sources_groups) != len(targets): - raise ValueError("'sources_group' and 'targets' must be the same length") + raise ValueError( + "'sources_group' and 'targets' must be the same length") # build a pair of lists (sources_groups, targets) where source is newer n_sources = [] |