We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcaa562 commit cd00854Copy full SHA for cd00854
digital_land/commands.py
@@ -1447,8 +1447,8 @@ def compare_state(
1447
1448
compare = State.load(state_path)
1449
# we don't want to include whether the previous state was an incremental override in comparison
1450
- current.pop("incremental_override")
1451
- compare.pop("incremental_override")
+ current.pop("incremental_override", None)
+ compare.pop("incremental_override", None)
1452
1453
if current == compare:
1454
# if current override = false and compare override = true we need to update state.json on s3 but we don't need to process everything
0 commit comments