Skip to content

Commit 35a4bd1

Browse files
committed
Fix docstring in plugin.py
1 parent 3ee274a commit 35a4bd1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/plugin.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
from . import highlevelil
3838

3939

40-
class PluginCommandContext: """
40+
class PluginCommandContext:
41+
"""
4142
The ``class PluginCommandContext`` is used to access loaded plugins and their exposed methods with the context of a specific Binary VIew.
4243
4344
:Example:
@@ -47,7 +48,7 @@ class PluginCommandContext: """
4748
>>> binexport = PluginCommand.get_valid_list(ctx)["BinExport"]
4849
>>> binexport.execute(ctx)
4950
"""
50-
51+
5152
def __init__(self, view):
5253
self._view = view
5354
self._address = 0

0 commit comments

Comments
 (0)