summaryrefslogtreecommitdiff
path: root/python/interaction.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2023-04-12 04:05:25 -0400
committerJordan Wiens <jordan@psifertex.com>2023-04-12 04:05:25 -0400
commit4104cde86a6452bd7b371e08d9f7d3b7b420d31c (patch)
treeef1f9ed557e7efab4f6b2e4805bcd480b3540de7 /python/interaction.py
parentfe274619fcb187edeb2c25cc2e8b3e9a7bbc2a00 (diff)
small pydoc tweaks
Diffstat (limited to 'python/interaction.py')
-rw-r--r--python/interaction.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/interaction.py b/python/interaction.py
index d97136d6..82066191 100644
--- a/python/interaction.py
+++ b/python/interaction.py
@@ -201,9 +201,6 @@ class AddressField:
disregarded. Additionally where as in the UI the result defaults to hexadecimal on the command-line 0x must be \
specified.
- :attr str prompt: prompt to be presented to the user
- :attr BinaryView view: BinaryView for the address
- :attr int current_address: current address to use as a base for relative calculations
"""
def __init__(self, prompt: str, view: Optional['binaryview.BinaryView'] = None, current_address: int = 0, default: Optional[int] = None):
self._prompt = prompt
@@ -231,6 +228,7 @@ class AddressField:
@property
def prompt(self):
+ """prompt to be presented to the user"""
return self._prompt
@prompt.setter
@@ -239,6 +237,7 @@ class AddressField:
@property
def view(self):
+ """BinaryView for the address"""
return self._view
@view.setter
@@ -247,6 +246,7 @@ class AddressField:
@property
def current_address(self):
+ """current address to use as a base for relative calculations"""
return self._current_address
@current_address.setter