-
Notifications
You must be signed in to change notification settings - Fork 266
Open
Labels
Component: APIIssue needs changes to the APIIssue needs changes to the API
Milestone
Description
Version and Platform (required):
- Binary Ninja Version: [5.2.8573
- Edition: Commercial
- OS: MacOS
- OS Version: 26.1
- CPU Architecture: M2
Bug Description:
Have to try/catch to see if an architecture is loaded
Steps To Reproduce:
>>> "aarch64" in Architecture
False
>>> Architecture["aarch64"]
<arch: aarch64>
>>> Architecture.get("aarch64")
Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: type object 'Architecture' has no attribute 'get'
Expected Behavior:
>>> "aarch64" in Architecture
True
>>> Architecture["aarch64"]
<arch: aarch64>
Metadata
Metadata
Assignees
Labels
Component: APIIssue needs changes to the APIIssue needs changes to the API