mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
[timeshift] refactoring: using tuple instead of list
This commit is contained in:
@@ -13,7 +13,7 @@ def is_available() -> bool:
|
||||
|
||||
|
||||
def delete_all_snapshots(root_password: Optional[str]) -> SimpleProcess:
|
||||
return SimpleProcess(['timeshift', '--delete-all', '--scripted'], root_password=root_password)
|
||||
return SimpleProcess(('timeshift', '--delete-all', '--scripted'), root_password=root_password)
|
||||
|
||||
|
||||
def delete(snapshot_name: str, root_password: Optional[str]) -> SimpleProcess:
|
||||
|
||||
Reference in New Issue
Block a user