From 5926698ea5013fab44d95d8a0f046888398565de Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Fri, 13 May 2022 14:32:58 -0400 Subject: Add missing import that broke the build. --- python/enterprise.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/enterprise.py') diff --git a/python/enterprise.py b/python/enterprise.py index b999bec6..731ba46b 100644 --- a/python/enterprise.py +++ b/python/enterprise.py @@ -9,6 +9,8 @@ from typing import Tuple, List, Optional import binaryninja._binaryninjacore as core import binaryninja +from . import decorators + if core.BNGetProduct() != "Binary Ninja Enterprise Client": # None of these functions exist on other builds, so just raise here to notify anyone who tries to use this raise RuntimeError("Cannot use Binary Ninja Enterprise client functionality with a non-Enterprise client.") -- cgit v1.3.1