Volshell: Fix up shuffled imports

This commit is contained in:
Mike Auty
2024-12-21 23:23:37 +00:00
parent 2bebc00ba4
commit ea273fe878
+5 -5
View File
@@ -11,6 +11,11 @@ import sys
from typing import Any, Dict, Iterable, List, Optional, Tuple, Type, Union
from urllib import parse, request
from volatility3.cli import text_renderer, volshell
from volatility3.framework import exceptions, interfaces, objects, plugins, renderers
from volatility3.framework.configuration import requirements
from volatility3.framework.layers import intel, physical, resources, scanners
try:
import capstone
@@ -18,11 +23,6 @@ try:
except ImportError:
has_capstone = False
from volatility3.cli import text_renderer, volshell
from volatility3.framework import exceptions, interfaces, objects, plugins, renderers
from volatility3.framework.configuration import requirements
from volatility3.framework.layers import intel, physical, resources, scanners
class Volshell(interfaces.plugins.PluginInterface):
"""Shell environment to directly interact with a memory image."""