mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-02 14:28:58 +02:00
Eliminate the *args, **kwargs from the intel translation layer code.
This commit is contained in:
@@ -125,8 +125,8 @@ class Intel(interfaces.layers.TranslationLayerInterface):
|
||||
class IntelPAE(Intel):
|
||||
"""Class for handling Physical Address Extensions for Intel architectures"""
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
Intel.__init__(self, *args, **kwargs)
|
||||
def __init__(self, context, name, memory_layer, page_map_offset):
|
||||
Intel.__init__(self, context, name, memory_layer, page_map_offset)
|
||||
|
||||
# These can vary depending on the type of space
|
||||
self._entry_format = "<Q"
|
||||
@@ -140,8 +140,8 @@ class IntelPAE(Intel):
|
||||
|
||||
|
||||
class Intel32e(Intel):
|
||||
def __init__(self, *args, **kwargs):
|
||||
Intel.__init__(self, *args, **kwargs)
|
||||
def __init__(self, context, name, memory_layer, page_map_offset):
|
||||
Intel.__init__(self, context, name, memory_layer, page_map_offset)
|
||||
|
||||
# These can vary depending on the type of space
|
||||
self._entry_format = "<Q"
|
||||
|
||||
Reference in New Issue
Block a user