You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use the min method to count the number of properties (of a particular type) on an object, but I find that counting fails silently for all cardinalities >1. ("silently" = gives unexpected results with no python or java error).
THING, HAS AT LEAST 1 PROPERTIES
none False
one True
two True
three True
THING, HAS AT LEAST 2 PROPERTIES
none False
one False
two False
three False
THING, HAS AT LEAST 3 PROPERTIES
none False
one False
two False
three False
Expected output:
THING, HAS AT LEAST 1 PROPERTIES
none False
one True
two True
three True
THING, HAS AT LEAST 2 PROPERTIES
none False
one False
two True
three True
THING, HAS AT LEAST 3 PROPERTIES
none False
one False
two False
three True
The text was updated successfully, but these errors were encountered:
I'm trying to use the
min
method to count the number of properties (of a particular type) on an object, but I find that counting fails silently for all cardinalities >1. ("silently" = gives unexpected results with no python or java error).Example:
Actual output:
Expected output:
The text was updated successfully, but these errors were encountered: