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
In module loki.expression.expr_visitors the initialization of class FindExpressionRoot does not check for unique keyword argument presence, which could lead to a multiple values conflict since this argument is statically set in the super.__init__ call.
This could be easily fixed, adding the line: kwargs.pop('unique', None)
The text was updated successfully, but these errors were encountered:
In module
loki.expression.expr_visitors
the initialization of classFindExpressionRoot
does not check forunique
keyword argument presence, which could lead to a multiple values conflict since this argument is statically set in thesuper.__init__
call.This could be easily fixed, adding the line:
kwargs.pop('unique', None)
The text was updated successfully, but these errors were encountered: