summaryrefslogtreecommitdiff
path: root/python/interaction.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/interaction.py')
-rw-r--r--python/interaction.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/interaction.py b/python/interaction.py
index 8e141374..9d52727a 100644
--- a/python/interaction.py
+++ b/python/interaction.py
@@ -1229,9 +1229,9 @@ def get_form_input(fields, title):
- DirectoryNameField - Prompt for directory name
This API is flexible and works both in the UI via a pop-up dialog and on the command-line. Note that more complicated APIs should consider usin the included pyside2 functionality in the `binaryninjaui` module.
- :param fields: A list containing of the above specified classes, strings or None
+ :param fields: A list containing these classes, strings or None
:type fields: list(str) or list(None) or list(LabelField) or list(SeparatorField) or list(TextLineField) or list(MultilineTextField) or list(IntegerField) or list(AddressField) or list(ChoiceField) or list(OpenFileNameField) or list(SaveFileNameField) or list(DirectoryNameField)
- :param str title: The title of the pop-up dialog.
+ :param str title: The title of the pop-up dialog
:rtype: None
:Example: