Skip to content

Commit 912d6e8

Browse files
authored
Update supervisor/backups/backup.py
1 parent 7eab589 commit 912d6e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

supervisor/backups/backup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def __eq__(self, other: Any) -> bool:
263263

264264
# Compare all fields except ones about protection. Current encryption status does not affect equality
265265
keys = self._data.keys() | other._data.keys()
266-
for k in keys - {ATTR_PROTECTED, ATTR_CRYPTO}:
266+
for k in keys - {ATTR_PROTECTED, ATTR_CRYPTO, ATTR_DOCKER}:
267267
if (
268268
k not in self._data
269269
or k not in other._data

0 commit comments

Comments
 (0)