diff options
author | josibake <josibake@protonmail.com> | 2021-08-24 18:05:43 +0200 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-10-16 09:14:37 +0800 |
commit | a46f71bb703dd8ada77e5eaf2a0b05d741d39bbf (patch) | |
tree | 65db1ba717a255212cb4e29941dbadf1fb74c09d /contrib/devtools/symbol-check.py | |
parent | 22e652662bb1fb9bd7ae6ab01c20665ad1c57895 (diff) |
lint: enable mypy checking for missing imports
Achieve this by adding some ignore, and making data/ importable.
Co-authored-by: João Barbosa <joao.paulo.barbosa@gmail.com>
Diffstat (limited to 'contrib/devtools/symbol-check.py')
-rwxr-xr-x | contrib/devtools/symbol-check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py index 158b6fa0ff..136a9b70c1 100755 --- a/contrib/devtools/symbol-check.py +++ b/contrib/devtools/symbol-check.py @@ -13,7 +13,7 @@ Example usage: import sys from typing import List, Dict -import lief +import lief #type:ignore # temporary constant, to be replaced with lief.ELF.ARCH.RISCV # https://github.com/lief-project/LIEF/pull/562 |