Skip to content

Commit f07ae4e

Browse files
author
rick
committed
corrected lint issues
1 parent 1acbb7e commit f07ae4e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

plaso/parsers/biome_plugins/app_install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ApplicationInstallAppleBiomeEvent(events.EventData):
2020
bundle_identifier (str): bundle identifier of the application.
2121
event_time (dfdatetime.DateTimeValues): date and time when the application
2222
was installed.
23-
"""
23+
"""
2424

2525
DATA_TYPE = 'apple:biome:app_install'
2626

@@ -85,7 +85,7 @@ class ApplicationInstallBiomePlugin(interface.AppleBiomePlugin):
8585
# pylint: disable=unused-argument
8686
def Process(self, parser_mediator, biome_file=None, **unused_kwargs):
8787
"""Extracts information from an Apple biome file. This is the main method
88-
that an Apple biome file plugin needs to implement.
88+
that an Apple biome file plugin needs to implement.
8989
9090
Args:
9191
parser_mediator (ParserMediator): parser mediator.

tests/parsers/biome_plugins/test_lib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class AppleBiomeTestCase(test_lib.ParserTestCase):
1212
"""Apple biome plugin test case."""
1313
def _OpenAppleBiomeFile(self, path_segments):
1414
"""Opens an Apple biome log file.
15+
1516
Args:
1617
path_segments (list[str]): path segments inside the test data directory.
1718
Returns:
@@ -34,6 +35,7 @@ def _ParseAppleBiomeFileWithPlugin(self, path_segments, plugin):
3435
This method will first test if the Apple biome file has the required schema
3536
using plugin.CheckRequiredSchema() and then extracts events using
3637
plugin.Process().
38+
3739
Args:
3840
path_segments (list[str]): path segments inside the test data directory.
3941
plugin (AppleBiomePlugin): Apple biome file plugin.

0 commit comments

Comments
 (0)