summaryrefslogtreecommitdiff
path: root/python/plugin.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-06-24 09:19:08 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-05 10:08:09 -0400
commitd37f7abfe4c1b23426b0fbdc85ae31788602ff28 (patch)
treeff106d8d52afc7cb4d85a1378a41e5c72a288c7d /python/plugin.py
parente0389d244e6211126267e060a9c61a1e75481b76 (diff)
Don't inherit from object anymore
Diffstat (limited to 'python/plugin.py')
-rw-r--r--python/plugin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/plugin.py b/python/plugin.py
index ae840ea2..2cbc6d0e 100644
--- a/python/plugin.py
+++ b/python/plugin.py
@@ -34,7 +34,7 @@ from . import lowlevelil
from . import mediumlevelil
-class PluginCommandContext(object):
+class PluginCommandContext:
def __init__(self, view):
self._view = view
self._address = 0
@@ -580,7 +580,7 @@ class PluginCommand(metaclass=_PluginCommandMetaClass):
self._type = value
-class MainThreadAction(object):
+class MainThreadAction:
def __init__(self, handle):
self.handle = handle
@@ -598,7 +598,7 @@ class MainThreadAction(object):
core.BNWaitForMainThreadAction(self.handle)
-class MainThreadActionHandler(object):
+class MainThreadActionHandler:
_main_thread = None
def __init__(self):