From 96256d365afc16d59156de645f531e7da2d2f0ca Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 22 Mar 2022 10:39:10 +1100 Subject: [PATCH] Fix bug where you couldn't compare less than or equal to with the selector. --- src/ifcopenshell-python/ifcopenshell/util/selector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/util/selector.py b/src/ifcopenshell-python/ifcopenshell/util/selector.py index f81b369076..f69356a750 100644 --- a/src/ifcopenshell-python/ifcopenshell/util/selector.py +++ b/src/ifcopenshell-python/ifcopenshell/util/selector.py @@ -48,7 +48,7 @@ class Selector: comparison: contains | morethanequalto | lessthanequalto | equal | morethan | lessthan contains: "*=" morethanequalto: ">=" - lessthanequalto: "<" + lessthanequalto: "<=" equal: "=" morethan: ">" lessthan: "<"