Skip to content

Commit 7133762

Browse files
committed
loader: address review feedback for PR #2799
- Move import envi.exc to align with viv_utils lazy imports - Update CHANGELOG to reference PR #2799 instead of issue #2794 Addresses feedback from @mike-hunhoff
1 parent 3933176 commit 7133762

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
### Bug Fixes
3838

39-
- loader: gracefully handle malformed ELF files with invalid relocations @kami922 #2794
39+
- loader: gracefully handle malformed ELF files with invalid relocations kamranulhaq2002@gmail.com #2799
4040
- binja: fix a crash during feature extraction when the MLIL is unavailable @xusheng6 #2714
4141

4242
### capa Explorer Web

capa/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from typing import Optional
2121
from pathlib import Path
2222

23-
import envi.exc
2423
from rich.console import Console
2524
from typing_extensions import assert_never
2625

@@ -155,6 +154,7 @@ def get_workspace(path: Path, input_format: str, sigpaths: list[Path]):
155154
"""
156155

157156
# lazy import enables us to not require viv if user wants another backend.
157+
import envi.exc
158158
import viv_utils
159159
import viv_utils.flirt
160160

0 commit comments

Comments
 (0)