From 1f9605abf7bc72bb0d13faa6dfc4480ccd8f8a6c Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Tue, 17 Sep 2019 18:32:44 +0100 Subject: [PATCH] Revert "Fix warnings when generated documentation." This actually broke autodoc generation and wasn't accurate. The documentation warnings may have to stay for now. This reverts commit 37e13321f929a65024bcd31226632ef802277537. --- volatility/framework/plugins/windows/poolscanner.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/volatility/framework/plugins/windows/poolscanner.py b/volatility/framework/plugins/windows/poolscanner.py index b70dc0865..4e123ffaa 100644 --- a/volatility/framework/plugins/windows/poolscanner.py +++ b/volatility/framework/plugins/windows/poolscanner.py @@ -3,7 +3,6 @@ # import enum -import functools import logging from typing import Dict, Generator, List, Optional, Tuple, Callable @@ -136,7 +135,6 @@ def os_distinguisher(version_check: Callable[[Tuple[int, ...]], bool], """ # try the primary method based on the pe version in the ISF - @functools.wraps(version_check) def method(context: interfaces.context.ContextInterface, symbol_table: str) -> bool: """