Merge bitcoin/bitcoin#27507: lint: stop ignoring LIEF imports

015cc5e588 lint: stop ignoring LIEF imports (fanquake)

Pull request description:

  Type stubs are now available as of 0.13.0.
  See https://github.com/lief-project/LIEF/issues/650.

ACKs for top commit:
  TheCharlatan:
    ACK 015cc5e588

Tree-SHA512: ebb754f293c2a61a0ef64c3552f7c700ceb3054b50fd3f1573e4a9e87773ddeba47bd9875f6ab055043012dbc20aeb71e4d76cd3da535c76651dfb1fbfc66e89
This commit is contained in:
fanquake
2023-05-29 17:10:24 +01:00
6 changed files with 6 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ Otherwise the exit status will be 1 and it will log which executables failed whi
import sys
from typing import List
import lief #type:ignore
import lief
def check_ELF_RELRO(binary) -> bool:
'''

View File

@@ -13,7 +13,7 @@ Example usage:
import sys
from typing import List, Dict
import lief #type:ignore
import lief
# Debian 10 (Buster) EOL: 2024. https://wiki.debian.org/LTS
#

View File

@@ -5,7 +5,7 @@
'''
Test script for security-check.py
'''
import lief #type:ignore
import lief
import os
import subprocess
from typing import List