summaryrefslogtreecommitdiff
path: root/python/enterprise.py
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2022-05-13 14:32:58 -0400
committerAlexander Taylor <alex@vector35.com>2022-05-13 14:32:58 -0400
commit5926698ea5013fab44d95d8a0f046888398565de (patch)
tree93af9d3c446eb1d2ee377ef92a75b7426067bc78 /python/enterprise.py
parent5f1a739ba4eb4d1338c6588214cd7e85a916ec1d (diff)
Add missing import that broke the build.
Diffstat (limited to 'python/enterprise.py')
-rw-r--r--python/enterprise.py2
1 files changed, 2 insertions, 0 deletions
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.")