mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-10 03:37:39 +02:00
chore(framework/__init__): move up imports
This commit is contained in:
@@ -6,6 +6,14 @@
|
||||
import glob
|
||||
import sys
|
||||
import zipfile
|
||||
import importlib
|
||||
import inspect
|
||||
import logging
|
||||
import os
|
||||
import traceback
|
||||
from typing import Any, Dict, Generator, List, Tuple, Type, TypeVar
|
||||
|
||||
from volatility3.framework import constants, interfaces
|
||||
|
||||
required_python_version = (3, 8, 0)
|
||||
if (
|
||||
@@ -22,15 +30,6 @@ if (
|
||||
)
|
||||
)
|
||||
|
||||
import importlib # noqa: E402
|
||||
import inspect # noqa: E402
|
||||
import logging # noqa: E402
|
||||
import os # noqa: E402
|
||||
import traceback # noqa: E402
|
||||
from typing import Any, Dict, Generator, List, Tuple, Type, TypeVar # noqa: E402
|
||||
|
||||
from volatility3.framework import constants, interfaces # noqa: E402
|
||||
|
||||
|
||||
# ##
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user