We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 698a4de commit 4f60274Copy full SHA for 4f60274
db/python/layers/participant.py
@@ -767,7 +767,8 @@ async def get_seqr_individual_template(
767
rows = [{h: r.get(h) for h in set_headers if h in r} for r in rows]
768
headers = [] # get ordered headers if we have data for it
769
for h in SeqrMetadataKeys.get_ordered_headers():
770
- if header := lheader_to_json.get(h.value.lower()) in set_headers:
+ header = lheader_to_json.get(h.value.lower())
771
+ if header in set_headers:
772
headers.append(header)
773
774
return {
0 commit comments