Merge pull request 'clan: state list improve formatting' (#1658) from kenji/clan-core:clan/state-list-improve into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/1658
This commit is contained in:
kenji
2024-06-25 09:56:29 +00:00

View File

@@ -58,11 +58,11 @@ def list_state_folders(machine: str, service: None | str = None) -> None:
for folder in folders:
print(f" - {folder}")
if pre_backup := state.get(service)["preBackupCommand"]:
print(f"preBackupCommand: {pre_backup}")
print(f" preBackupCommand: {pre_backup}")
if pre_restore := state.get(service)["preRestoreCommand"]:
print(f"preRestoreCommand: {pre_restore}")
print(f" preRestoreCommand: {pre_restore}")
if post_restore := state.get(service)["postRestoreCommand"]:
print(f"postRestoreCommand: {post_restore}")
print(f" postRestoreCommand: {post_restore}")
print("")