Skip to content

Commit

Permalink
Text edits
Browse files Browse the repository at this point in the history
  • Loading branch information
JaniceManwiller authored Nov 22, 2024
1 parent ef901e8 commit cc8c3c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class FileParseDiffAction(Enum):


class FileParseResultsDiff(object):
"""Stores file parse result and file parse result action.
"""Stores the file parse result and the file parse result action.
Parameters
----------
Expand All @@ -34,7 +34,7 @@ def __init__(self, status: FileParseDiffAction, file: FileParseResult):
self.file = file

def describe(self) -> str:
"""Returns the status and the file path of the diff as string."""
"""Returns the status and the file path of the diff as a string."""
return f"{self.status}: {self.file.parsed_file_path}"

def deconstruct(self) -> Tuple[FileParseDiffAction, FileParseResult]:
Expand Down

0 comments on commit cc8c3c2

Please sign in to comment.