Fix missing affiliation in Person class output
All checks were successful
Test pipeline / test (push) Successful in 12s
All checks were successful
Test pipeline / test (push) Successful in 12s
This commit is contained in:
parent
eaa6325ac1
commit
2c88a76f4e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue