def _merge(self, responses): """ Merge responses, removing duplicates. """ return list(unique(chain.from_iterable(responses), _freeze))
def _merge(self, responses): """ Implementation detail. """ return list(unique(chain.from_iterable(responses), _freeze))