From cffbc3f268cf18bfe275965159703211ddf9ae23 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Wed, 10 Apr 2019 17:54:02 -0700 Subject: [PATCH] Update docstrings --- rbackup/struct/repository.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/rbackup/struct/repository.py b/rbackup/struct/repository.py index 83938a4..1a67f1b 100644 --- a/rbackup/struct/repository.py +++ b/rbackup/struct/repository.py @@ -29,15 +29,7 @@ class Repository(Hierarchy): * Each snapshot in a repository is unaware of one another, this is the job of the repository to organize * The only way snapshots are linked together is in files - that are hardlinked together - - At the time of creation, the following is true about the class: - =============================================================== - The current snapshot points to: - ------------------------------- - * None if the repository is empty - * The most recent snapshot before running create_snapshot() - * A new, empty snapshot after running create_snapshot() + that are hard-linked together Attributes ---------- @@ -81,7 +73,8 @@ class Repository(Hierarchy): """ def __init__(self, dest): - """Default constructor for the Repository class.""" + """Default constructor for the Repository class. + """ super().__init__(dest) if not self.metadata_path.exists():