Skip to content

Commit

Permalink
Update dtfabric_plugin.py
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Aug 29, 2018
1 parent 766a064 commit 821dd8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/parsers/winreg_plugins/dtfabric_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ErrorDataTypeMap(dtfabric_data_maps.DataTypeMap):

# pylint 1.9.3 wants a docstring for kwargs, but this is not useful to add.
# pylint: disable=missing-param-doc
def FoldByteStream(self, mapped_value, **unused_kwargs):
def FoldByteStream(self, mapped_value, **kwargs):
"""Folds the data type into a byte stream.
Args:
Expand All @@ -55,7 +55,7 @@ def FoldByteStream(self, mapped_value, **unused_kwargs):

# pylint 1.9.3 wants a docstring for kwargs, but this is not useful to add.
# pylint: disable=missing-param-doc
def MapByteStream(self, byte_stream, **unused_kwargs):
def MapByteStream(self, byte_stream, **kwargs):
"""Maps the data type on a byte stream.
Args:
Expand Down

0 comments on commit 821dd8d

Please sign in to comment.