martin f. krafft | f37f068 | 2013-06-14 16:36:20 +0200 | [diff] [blame] | 1 | # |
| 2 | # -*- coding: utf-8 -*- |
| 3 | # |
| 4 | # This file is part of reclass (http://github.com/madduck/reclass) |
| 5 | # |
| 6 | # Copyright © 2007–13 martin f. krafft <madduck@madduck.net> |
| 7 | # Released under the terms of the Artistic Licence 2.0 |
| 8 | # |
| 9 | from extend import BaseListMerger |
| 10 | |
| 11 | class SetExtend(BaseListMerger): |
| 12 | |
| 13 | def _combine(self, first, second): |
martin f. krafft | a95eaa3 | 2013-06-16 11:56:41 +0200 | [diff] [blame] | 14 | if second is not None: |
| 15 | for i in second: |
| 16 | if i not in first: |
| 17 | first.append(i) |
martin f. krafft | f37f068 | 2013-06-14 16:36:20 +0200 | [diff] [blame] | 18 | return first |