DoubleML/doubleml-for-py

set applied to a string is not the set containing the string

MalteKurz opened this issue · 0 comments

set('abc') = {'a', 'b', 'c'}, so we need to add brackets around self.y_col here:

y_d = set.union(set(self.y_col), set(self.d_cols))

--> also at other places
--> related to #84