Skip to content

Commit 1b1d8c3

Browse files
committed
Add missing set defaults
1 parent 8d07d16 commit 1b1d8c3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scan_to_paperless/process_utils.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,10 @@ def get_background_color(self) -> tuple[int, int, int]:
208208

209209
def do_initial_cut(self) -> None:
210210
"""Definitively mask the original image."""
211-
cut_config = self.config["args"].get("cut", cast(schema.CutOperation, schema.CUT_OPERATION_DEFAULT))
212-
if cut_config.get("enabled", schema.CROP_ENABLED_DEFAULT):
211+
cut_config = self.config["args"].setdefault(
212+
"cut", cast(schema.CutOperation, schema.CUT_OPERATION_DEFAULT)
213+
)
214+
if cut_config.setdefault("enabled", schema.CROP_ENABLED_DEFAULT):
213215
assert self.image is not None
214216
mask = self._get_mask(
215217
cut_config.setdefault("auto_mask", {}),

0 commit comments

Comments
 (0)