We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83bf3b0 commit bc79807Copy full SHA for bc79807
packages/aws-library/src/aws_library/ec2/_models.py
@@ -61,7 +61,7 @@ def __ge__(self, other: "Resources") -> bool:
61
k, a
62
) # NOTE: get from other, default to "a" resources so that non-existing keys can be compared as equal
63
if isinstance(a, int | float) and isinstance(b, int | float):
64
- if not (a >= b):
+ if a < b:
65
return False
66
elif a != b:
67
assert isinstance(a, str | None) # nosec
0 commit comments