Make an empty Tree() as a base for recreating tree.

This commit is contained in:
2023-10-10 18:05:16 +02:00
parent 6af7b9b1b8
commit ee7bde5adc

View File

@@ -448,6 +448,7 @@ class PassStore:
return path return path
def gather_pass_tree(self): def gather_pass_tree(self):
self.data = Tree()
self._gather_pass_tree(self.data, self.store_path, '') self._gather_pass_tree(self.data, self.store_path, '')
def get_pass(self, path): def get_pass(self, path):