summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorrose <47357290+rose4096@users.noreply.github.com>2022-05-20 13:30:17 -0400
committerrose <47357290+rose4096@users.noreply.github.com>2022-05-31 12:47:49 -0400
commit6df2db145bdcc7e541c71d5843d270ecebbd6143 (patch)
tree27d14a802655e31c9f593c37fb64fe8ad90bd276 /python/binaryview.py
parentd03f3e58fcdd548c788eeff51d7507e07ed799ed (diff)
Increase coverage of architecture.py
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index fdd03f37..9ce51386 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -274,7 +274,7 @@ class AnalysisCompletionEvent:
del self.__class__._pending_analysis_completion_events[id(self)]
try:
arg_offset = inspect.ismethod(self.callback)
- callback_spec = inspect.getargspec(self.callback)
+ callback_spec = inspect.getfullargspec(self.callback)
if len(callback_spec.args) > arg_offset:
self.callback(self) # type: ignore
else: