Skip to content

Commit ed72309

Browse files
committed
rename silent to auto
1 parent 1c00b43 commit ed72309

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

idaplugin/rematch/autoupload.py idaplugin/rematch/automate.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import idaapi
22

3-
try:
4-
import rematch.actions as actions
5-
import rematch.dialogs as dialogs
6-
except ImportError:
7-
from . import actions
8-
from . import dialogs
3+
from . import actions
4+
from . import dialogs
95

106

117
def main():

idaplugin/rematch/dialogs/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from . import base
22
from . import widgets
33
from . import gui
4-
from . import silent
4+
from . import auto
55
from . import login
66
from . import upload
77
from . import match
@@ -10,5 +10,5 @@
1010
from . import settings
1111
from . import serializedgraph
1212

13-
__all__ = ['base', 'widgets', 'gui', 'silent', 'login', 'upload', 'match',
13+
__all__ = ['base', 'widgets', 'gui', 'auto', 'login', 'upload', 'match',
1414
'result', 'project', 'settings', 'serializedgraph']

idaplugin/rematch/dialogs/silent.py idaplugin/rematch/dialogs/auto.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
from .base import BaseDialog
33

44

5-
class SilentDialog(BaseDialog):
5+
class AutoDialog(BaseDialog):
66
def __init__(self, calls):
77
# initialize super without any callbacks to avoid code review warnings
8-
super(SilentDialog, self).__init__()
8+
super(AutoDialog, self).__init__()
99
self.data_value = None
1010
self.calls = calls
1111

1212
def __call__(self, **kwargs):
13-
super(SilentDialog, self).__init__(**kwargs)
13+
super(AutoDialog, self).__init__(**kwargs)
1414
return self
1515

1616
def show(self):

0 commit comments

Comments
 (0)