Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rick committed Apr 12, 2024
1 parent 12091ef commit 39430ee
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plaso/parsers/text_plugins/apple_pstxt.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,14 @@ def _ParseStartTime(self, start_time_string):
def CheckRequiredFormat(self, parser_mediator, text_reader):
"""Check if the log record has the minimal structure required by the parser.
Args:
parser_mediator (ParserMediator): mediates interactions between parsers
and other components, such as storage and dfVFS.
text_reader (EncodedTextReader): text reader.
Returns:
bool: True if this is the correct parser, False otherwise.
"""
Args:
parser_mediator (ParserMediator): mediates interactions between parsers
and other components, such as storage and dfVFS.
text_reader (EncodedTextReader): text reader.
Returns:
bool: True if this is the correct parser, False otherwise.
"""
try:
structure = self._VerifyString(text_reader.lines)
except errors.ParseError:
Expand Down

0 comments on commit 39430ee

Please sign in to comment.