summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas J. Fan <thomasjpfan@gmail.com>2021-10-11 16:22:14 -0400
committerThomas J. Fan <thomasjpfan@gmail.com>2021-10-11 16:22:14 -0400
commitc0e3231643f9bcebc3d69f8f78c50cc253e203d5 (patch)
tree1cc4fcf301a65370237d6e254e8e43c8fbd5cf22
parenta83f0f2cea9254bc46dcfc567b916045a63421b0 (diff)
downloadnumpy-c0e3231643f9bcebc3d69f8f78c50cc253e203d5.tar.gz
STY Lint [cd build]
-rw-r--r--tools/wheels/check_license.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/wheels/check_license.py b/tools/wheels/check_license.py
index b181e281f..0fe7356c0 100644
--- a/tools/wheels/check_license.py
+++ b/tools/wheels/check_license.py
@@ -16,7 +16,8 @@ import argparse
def check_text(text):
ok = "Copyright (c)" in text and re.search(
- r"This binary distribution of \w+ also bundles the following software", text
+ r"This binary distribution of \w+ also bundles the following software",
+ text,
)
return ok