We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ba0503 commit 7a06d0dCopy full SHA for 7a06d0d
1 file changed
node/flatpak_node_generator/package.py
@@ -50,7 +50,7 @@ def __lt__(self, other: object) -> bool:
50
if not isinstance(other, SemVer.Prerelease):
51
return NotImplemented
52
53
- for our_part, other_part in zip(self._parts, other._parts):
+ for our_part, other_part in zip(self._parts, other._parts, strict=False):
54
if type(our_part) == type(other_part):
55
if our_part < other_part: # type: ignore
56
return True
0 commit comments