forked from p15670423/monkey
Common: Fix docstring format in PluginConfiguration
This commit is contained in:
parent
f941c2aa35
commit
856ce4925b
|
@ -30,9 +30,10 @@ class PluginConfiguration:
|
|||
"""
|
||||
A configuration for plugins
|
||||
|
||||
:param name: Name of the plugin.
|
||||
Attributes:
|
||||
:param name: Name of the plugin
|
||||
Example: "ransomware"
|
||||
:param options: Any other information/configuration fields relevant to the plugin.
|
||||
:param options: Any other information/configuration fields relevant to the plugin
|
||||
Example: {
|
||||
"encryption": {
|
||||
"enabled": True,
|
||||
|
@ -46,6 +47,7 @@ class PluginConfiguration:
|
|||
},
|
||||
}
|
||||
"""
|
||||
|
||||
name: str
|
||||
options: Dict
|
||||
|
||||
|
|
Loading…
Reference in New Issue