todo list
This commit is contained in:
@@ -53,6 +53,7 @@ class Store:
|
||||
return content
|
||||
|
||||
def copy_content(self, content):
|
||||
# TODO: Warn on missing file to copy
|
||||
print(f"Copy files to {self.path} : ", end="")
|
||||
count = len(content)
|
||||
start_time = time.process_time()
|
||||
@@ -62,6 +63,7 @@ class Store:
|
||||
print(f"{count} in {elapsed:.2f}s.")
|
||||
|
||||
def move_content(self, content):
|
||||
# TODO: Warn on missing file to move
|
||||
print(f"Move files to {self.path} : ", end="")
|
||||
count = len(content)
|
||||
start_time = time.process_time()
|
||||
@@ -71,6 +73,7 @@ class Store:
|
||||
print(f"{count} in {elapsed:.2f}s.")
|
||||
|
||||
def remove_content(self, content):
|
||||
# TODO: Silently ignore missing files
|
||||
print(f"Removing files from {self.path} : ", end="")
|
||||
count = len(content)
|
||||
start_time = time.process_time()
|
||||
|
||||
Reference in New Issue
Block a user