mirror of
https://github.com/vee1e/capa.git
synced 2026-09-01 10:48:51 +00:00
binja: add mypy config for top-level binaryninja module (#2877)
Allow mypy to skip missing 'binaryninja' (not just binaryninja.*) when the Binary Ninja API is not installed. Fixes #2399
This commit is contained in:
parent
54cc4ee7a3
commit
e9b3311338
2 changed files with 4 additions and 0 deletions
3
.github/mypy/mypy.ini
vendored
3
.github/mypy/mypy.ini
vendored
|
|
@ -63,6 +63,9 @@ ignore_missing_imports = True
|
|||
[mypy-PyQt5.*]
|
||||
ignore_missing_imports = True
|
||||
|
||||
[mypy-binaryninja]
|
||||
ignore_missing_imports = True
|
||||
|
||||
[mypy-binaryninja.*]
|
||||
ignore_missing_imports = True
|
||||
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@
|
|||
|
||||
- doc: document that default output shows top-level matches only; -v/-vv show nested matches @devs6186 #1410
|
||||
- doc: fix typo in usage.md, add documentation links to README @devs6186 #2274
|
||||
- binja: add mypy config for top-level binaryninja module to fix mypy issues @devs6186 #2399
|
||||
- ci: deprecate macos-13 runner and use Python v3.13 for testing @mike-hunhoff #2777
|
||||
|
||||
### Raw diffs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue