small fixes

- set child default object to field key
- strip whitespace if split
- ignore case for sort order
- setup.py package instead of module
This commit is contained in:
relikd
2022-04-10 22:57:46 +02:00
parent b05dd31ff0
commit d689a6cdf7
4 changed files with 13 additions and 6 deletions

View File

@@ -121,7 +121,7 @@ class GroupBySource(VirtualSourceObject):
def __lt__(self, other: 'GroupBySource') -> bool:
# Used for |sort filter ("group" is the provided original string)
return self.group < other.group
return self.group.lower() < other.group.lower()
def __eq__(self, other: object) -> bool:
# Used for |unique filter