We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdbb7ab commit 1bbd327Copy full SHA for 1bbd327
pephubclient/files_manager.py
@@ -69,6 +69,9 @@ def file_exists(full_path: str) -> bool:
69
def delete_file_if_exists(filename: str) -> None:
70
with suppress(FileNotFoundError):
71
os.remove(filename)
72
+ print(
73
+ f"\033[38;5;11m{f'File was deleted successfully -> {filename}'}\033[0m"
74
+ )
75
76
@staticmethod
77
def check_writable(path: str, force: bool = True):
0 commit comments