diff options
| author | Brian Potchik <brian@vector35.com> | 2025-01-14 13:35:30 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-01-14 13:35:30 -0500 |
| commit | 35a4bd1a697f627edd19862c6b1afacfc7f754c4 (patch) | |
| tree | b147b5342ee79394499853872c107a1db54fb8e8 /python/plugin.py | |
| parent | 3ee274ac9111829d2abe2c051c694466a7d0d477 (diff) | |
Fix docstring in plugin.py
Diffstat (limited to 'python/plugin.py')
| -rw-r--r-- | python/plugin.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/plugin.py b/python/plugin.py index 0250007e..e5441f7f 100644 --- a/python/plugin.py +++ b/python/plugin.py @@ -37,7 +37,8 @@ from . import mediumlevelil from . import highlevelil -class PluginCommandContext: """ +class PluginCommandContext: + """ The ``class PluginCommandContext`` is used to access loaded plugins and their exposed methods with the context of a specific Binary VIew. :Example: @@ -47,7 +48,7 @@ class PluginCommandContext: """ >>> binexport = PluginCommand.get_valid_list(ctx)["BinExport"] >>> binexport.execute(ctx) """ - + def __init__(self, view): self._view = view self._address = 0 |
