Skip to content

Commit dcda524

Browse files
committed
fix return value structure
1 parent b5e0dc0 commit dcda524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gardenlinux/features/reproducibility/comparator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def generate(self, a: PathLike[str], b: PathLike[str]) -> tuple[list[Path], bool
145145
"""
146146

147147
if filecmp.cmp(a, b):
148-
return []
148+
return [], False
149149

150150
with self._unpack(a) as unpacked_a, self._unpack(b) as unpacked_b:
151151
cmp = filecmp.dircmp(unpacked_a, unpacked_b, shallow=False)

0 commit comments

Comments
 (0)