Make sure objects.utility is imported automatically.

This commit is contained in:
Mike Auty
2019-05-09 00:07:59 +01:00
parent d0ff961ed1
commit 1c0cd7ddaf
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -19,7 +19,6 @@
#
import collections
import functools
import logging
import struct
from collections import abc
@@ -27,7 +26,7 @@ from typing import Any, ClassVar, Dict, List, Iterable, Optional, Tuple, Type, U
from volatility.framework import interfaces
from volatility.framework.interfaces.objects import ObjectInformation
from volatility.framework.objects import templates
from volatility.framework.objects import templates, utility
vollog = logging.getLogger(__name__)