File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- __version__ = "2.1.3 "
1
+ __version__ = "2.1.4 "
2
2
3
3
from .api import AIAPI , OpenAIAPI
4
4
from libbs .api import DecompilerInterface
Original file line number Diff line number Diff line change @@ -28,31 +28,31 @@ def display_prologue(self):
28
28
""" ))
29
29
30
30
def install_ida (self , path = None , interactive = True ):
31
- path = path or super ().install_ida (path = path , interactive = interactive )
31
+ path = super ().install_ida (path = path , interactive = interactive )
32
32
if not path :
33
33
return
34
34
35
35
self ._copy_plugin_to_path (path )
36
36
return path
37
37
38
38
def install_ghidra (self , path = None , interactive = True ):
39
- path = path or super ().install_ghidra (path = path , interactive = interactive )
39
+ path = super ().install_ghidra (path = path , interactive = interactive )
40
40
if not path :
41
41
return
42
42
43
43
self ._copy_plugin_to_path (path )
44
44
return path
45
45
46
46
def install_binja (self , path = None , interactive = True ):
47
- path = path or super ().install_binja (path = path , interactive = interactive )
47
+ path = super ().install_binja (path = path , interactive = interactive )
48
48
if not path :
49
49
return
50
50
51
51
self ._copy_plugin_to_path (path )
52
52
return path
53
53
54
54
def install_angr (self , path = None , interactive = True ):
55
- path = path or super ().install_angr (path = path , interactive = interactive )
55
+ path = super ().install_angr (path = path , interactive = interactive )
56
56
if not path :
57
57
return
58
58
You can’t perform that action at this time.
0 commit comments