Skip to content

Commit b027c29

Browse files
committed
Fix the installer to always call super
1 parent 5cad544 commit b027c29

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dailalib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.1.3"
1+
__version__ = "2.1.4"
22

33
from .api import AIAPI, OpenAIAPI
44
from libbs.api import DecompilerInterface

dailalib/installer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,31 +28,31 @@ def display_prologue(self):
2828
"""))
2929

3030
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)
3232
if not path:
3333
return
3434

3535
self._copy_plugin_to_path(path)
3636
return path
3737

3838
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)
4040
if not path:
4141
return
4242

4343
self._copy_plugin_to_path(path)
4444
return path
4545

4646
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)
4848
if not path:
4949
return
5050

5151
self._copy_plugin_to_path(path)
5252
return path
5353

5454
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)
5656
if not path:
5757
return
5858

0 commit comments

Comments
 (0)