Closed Res260 closed 1 month ago
Hello, I was trying to do a condition on a CompareOperators object, but I cannot import it:
CompareOperators
Since CompareOperators is inside the SigmaCompareExpression class, it is private and we cannot import it:
SigmaCompareExpression
Is there a problem with putting it outside the class so we can import it?
This should be fine or you access it with SigmaCompareExpression.CompareOperators.<OP>.
SigmaCompareExpression.CompareOperators.<OP>
Changed it! Because it's a breaking change and I plan to do some of them for pySigma 1.0 it will be released with 1.0.
Hello, I was trying to do a condition on a
CompareOperators
object, but I cannot import it:Since
CompareOperators
is inside theSigmaCompareExpression
class, it is private and we cannot import it:Is there a problem with putting it outside the class so we can import it?