Merge : chore: remove redundant word

4c62b37fcd23e94ea482efc5974acc2560f57f5f chore: remove redundant word (tianzedavid)

Pull request description:

  Remove redundant word

  For https://github.com/bitcoin/bitcoin/pull/31855#issuecomment-2656392782

ACKs for top commit:
  maflcko:
    lgtm ACK 4c62b37fcd23e94ea482efc5974acc2560f57f5f
  delta1:
    ACK 4c62b37fcd

Tree-SHA512: b6af8aa158be37977d7016435aafb07542e38db863111b86369cba29bab25c9dd0075892dbe559d4d72c6aa33fcb08a7881a41d1a124d0bfc2c18aea696a0b57
This commit is contained in:
merge-script 2025-02-13 15:33:43 +01:00
commit c242fa5be3
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

@ -91,7 +91,7 @@ def check_all_filenames(files) -> int:
for filename in filenames:
if not filename_regex.match(filename):
print(
f"""File {repr(filename)} does not not match the allowed filename regexp ('{ALLOWED_FILENAME_REGEXP}')."""
f"""File {repr(filename)} does not match the allowed filename regexp ('{ALLOWED_FILENAME_REGEXP}')."""
)
failed_tests += 1
return failed_tests