We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5bd4b0 commit 3d8a26eCopy full SHA for 3d8a26e
aiohasupervisor/models/backups.py
@@ -29,7 +29,7 @@ class Folder(StrEnum):
29
class AddonSet(StrEnum):
30
"""AddonSet type."""
31
32
- ALL = "all"
+ ALL = "ALL"
33
34
35
# --- OBJECTS ----
tests/test_backups.py
@@ -493,7 +493,7 @@ async def test_download_backup(
493
{"name": "Test", "folders": ["share"]},
494
),
495
(PartialBackupOptions(addons={"core_ssh"}), {"addons": ["core_ssh"]}),
496
- (PartialBackupOptions(addons=AddonSet.ALL), {"addons": "all"}),
+ (PartialBackupOptions(addons=AddonSet.ALL), {"addons": "ALL"}),
497
(
498
PartialBackupOptions(
499
homeassistant=True, homeassistant_exclude_database=True
0 commit comments