2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-16 17:56:30 +00:00

Style fixes

This commit is contained in:
Oliver Walters
2017-04-14 13:31:07 +10:00
parent 15d27cafec
commit f21a05dfa3
3 changed files with 3 additions and 2 deletions

View File

@@ -184,7 +184,7 @@ def FilterChildren(queryset, parent):
if not parent:
return queryset
elif isinstance(parent,str) and parent.lower() in ['none', 'false', 'null', 'top', '0']:
elif isinstance(parent, str) and parent.lower() in ['none', 'false', 'null', 'top', '0']:
return queryset.filter(parent=None)
else:
try: