Fix missing affiliation in Person class output
All checks were successful
Test pipeline / test (push) Successful in 12s

This commit is contained in:
Alexander Minges 2025-05-20 13:52:49 +02:00
parent eaa6325ac1
commit 2c88a76f4e
Signed by: Athemis
SSH key fingerprint: SHA256:TUXshgulbwL+FRYvBNo54pCsI0auROsSEgSvueKbkZ4

View file

@ -352,7 +352,7 @@ class Person:
else: else:
return_dict["affiliation"] = "" return_dict["affiliation"] = ""
else: else:
return_dict["affiliation"] = "" return_dict["affiliation"] = self.affiliation if self.affiliation else ""
return return_dict return return_dict