Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Jul 5, 2024
1 parent a8c341a commit 844812f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/depiction/persistence/file_checksums.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@


class FileChecksums:
"""Calculates the checksums of a file.
:param file_path: the path to the file
"""

def __init__(self, file_path: Path) -> None:
self._file_path = file_path

@property
def file_path(self) -> Path:
"""The path to the file."""
return self._file_path

@cached_property
Expand Down

0 comments on commit 844812f

Please sign in to comment.