summaryrefslogtreecommitdiff
path: root/python/startup.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-06-07 09:59:54 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-05 10:08:09 -0400
commit61b4bb24e06aa955484293d35fa926c07887544b (patch)
tree29c6b7fecdac6270681260637439926ec07a259e /python/startup.py
parent75f2463a46cc666e87120f3a30332fa80020b62e (diff)
Add type hints to basicblock.py, lowlevelil.py, architecture.py
Diffstat (limited to 'python/startup.py')
-rw-r--r--python/startup.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/python/startup.py b/python/startup.py
deleted file mode 100644
index d0b66593..00000000
--- a/python/startup.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright (c) 2015-2021 Vector 35 Inc
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to
-# deal in the Software without restriction, including without limitation the
-# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-# sell copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in
-# all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-# IN THE SOFTWARE.
-
-#from binaryninja import _binaryninjacore as core
-
-
-#_plugin_init = False
-
-
-# def _init_plugins():
-# global _plugin_init
-# if not _plugin_init:
-# _plugin_init = True
-# core.BNInitCorePlugins()
-# core.BNInitUserPlugins()
-# core.BNInitRepoPlugins()
-# if not core.BNIsLicenseValidated():
-# raise RuntimeError("License is not valid. Please supply a valid license.")