We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f7cbd commit b5c98a0Copy full SHA for b5c98a0
volatility3/cli/volshell/generic.py
@@ -85,14 +85,17 @@ def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]
85
return reqs
86
87
def run(
88
- self, additional_locals: Dict[str, Any] = {}
+ self, additional_locals: Dict[str, Any] = None
89
) -> interfaces.renderers.TreeGrid:
90
"""Runs the interactive volshell plugin.
91
92
Returns:
93
Return a TreeGrid but this is always empty since the point of this plugin is to run interactively
94
"""
95
96
+ if additional_locals is None:
97
+ additional_locals = {}
98
+
99
# Try to enable tab completion
100
if not has_ipython:
101
try:
0 commit comments