Skip to content

Commit

Permalink
less specific argparse epilog reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Abyss-W4tcher committed Jan 10, 2025
1 parent 615d1d5 commit 1cf0232
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion volatility3/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def run(self):
plugin,
help=plugin_list[plugin].__doc__,
description=plugin_list[plugin].__doc__,
epilog=getattr(plugin_list[plugin], "_argparse_epilog", None),
epilog=plugin_list[plugin].additional_description,
)
self.populate_requirements_argparse(plugin_parser, plugin_list[plugin])

Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/interfaces/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class PluginInterface(
# Be careful with inheritance around this (We default to requiring a version which doesn't exist, so it must be set)
_required_framework_version: Tuple[int, int, int] = (0, 0, 0)
"""The _version variable is a quick way for plugins to define their current interface, it should follow SemVer rules"""
_argparse_epilog: str = None
additional_description: str = None
"""Display additional description of the plugin after the description of the arguments. See: https://docs.python.org/3/library/argparse.html#epilog"""

def __init__(
Expand Down

0 comments on commit 1cf0232

Please sign in to comment.