We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fbe0e4 commit f9d0cffCopy full SHA for f9d0cff
1 file changed
quick_backup_multi/config.py
@@ -38,11 +38,11 @@ class Configuration(Serializable):
38
'list': 0,
39
}
40
slots: List[SlotInfo] = [
41
- SlotInfo(delete_protection=0), # 无保护
42
43
44
- SlotInfo(delete_protection=3 * 60 * 60), # 三小时
45
- SlotInfo(delete_protection=3 * 24 * 60 * 60), # 三天
+ SlotInfo(delete_protection=0), # no protection
+ SlotInfo(delete_protection=3 * 60 * 60), # 3 hours
+ SlotInfo(delete_protection=3 * 24 * 60 * 60), # 3 days
46
]
47
48
def is_file_ignored(self, file_name: str) -> bool:
0 commit comments