From 98fff4616c103a1cf0102ebccd195087d558ae7e Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sat, 2 Jul 2016 14:55:52 +0100 Subject: [PATCH] Add in linted spacing by pycharm. --- volatility/framework/layers/lime.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/volatility/framework/layers/lime.py b/volatility/framework/layers/lime.py index 72abb4a1f..c1b2bfe17 100644 --- a/volatility/framework/layers/lime.py +++ b/volatility/framework/layers/lime.py @@ -9,9 +9,11 @@ import struct from volatility.framework import interfaces, exceptions from volatility.framework.configuration import requirements + class LimeFormatException(exceptions.LayerException): """Thrown when an error occurs with the underlying Lime file format""" + class LimeLayer(interfaces.layers.TranslationLayerInterface): """A Lime format TranslationLayer. Lime is generally used to store physical memory images where there are large holes in the physical @@ -79,7 +81,6 @@ class LimeLayer(interfaces.layers.TranslationLayerInterface): self._minaddr = segments[0][0] self._maxaddr = maxaddr - def _find_segment(self, offset): """Finds the segment containing a given offset