Commit 55611daf authored by Marek Chalupa's avatar Marek Chalupa
Browse files

BSELF: fix returning union of matched sequences

parent 5b7e450d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -576,7 +576,7 @@ class BSELFChecker(BaseBSE):
        self.inductive_sets[L.header()] = newisets
        if sets:
            if self.options.union_matched:
                return union(*sets)
                return [union(*sets)]
            return sets
        return None