Skip to content

Commit

Permalink
Update supervisor/backups/backup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
agners authored Jan 23, 2025
1 parent 7eab589 commit 912d6e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supervisor/backups/backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def __eq__(self, other: Any) -> bool:

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

0 comments on commit 912d6e8

Please sign in to comment.