X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/dbaa652d6c0d37f40d013e0129235b6d50335868..97eff0b3747614feaf9522d1338106ac98978c40:/tasklib/lazy.py diff --git a/tasklib/lazy.py b/tasklib/lazy.py index f9e0c0a..3a03a33 100644 --- a/tasklib/lazy.py +++ b/tasklib/lazy.py @@ -129,7 +129,7 @@ class LazyUUIDTaskSet(object): def __rsub__(self, other): return LazyUUIDTaskSet(self._tw, - set(t['uuid'] for t in other) - self._uuids) + set(t['uuid'] for t in other) - self._uuids) def __or__(self, other): return self.union(other) @@ -172,19 +172,19 @@ class LazyUUIDTaskSet(object): def union(self, other): return LazyUUIDTaskSet(self._tw, - self._uuids | set(t['uuid'] for t in other)) + self._uuids | set(t['uuid'] for t in other)) def intersection(self, other): return LazyUUIDTaskSet(self._tw, - self._uuids & set(t['uuid'] for t in other)) + self._uuids & set(t['uuid'] for t in other)) def difference(self, other): return LazyUUIDTaskSet(self._tw, - self._uuids - set(t['uuid'] for t in other)) + self._uuids - set(t['uuid'] for t in other)) def symmetric_difference(self, other): return LazyUUIDTaskSet(self._tw, - self._uuids ^ set(t['uuid'] for t in other)) + self._uuids ^ set(t['uuid'] for t in other)) def update(self, other): self._uuids |= set(t['uuid'] for t in other)